]> shimmer.witbreuk.eu Git - UltimateKEYS.git/blob - autohotkey/UltimateKEYS (for AutoHotkey v1.1).ahk
Update README.md
[UltimateKEYS.git] / autohotkey / UltimateKEYS (for AutoHotkey v1.1).ahk
1 #requires AutoHotkey v1.1
2
3 ; UltimateKEYS (for AutoHotkey v1.1).ahk - 2024-11-20
4
5 ; Website : https://pieter-degroote.github.io/UltimateKEYS/
6
7 ; GitHub : https://github.com/pieter-degroote/UltimateKEYS
8
9 ; License : GNU General Public License Version 3
10
11
12 ; Configuration :
13
14 ; Keyboard layout (on Windows) : US QWERTY
15
16
17
18 #NoEnv ; avoids checking empty variables to see if they are environment variables
19 #KeyHistory 0 ; disables the key history (for privacy and security)
20 ListLines Off ; omits recently executed lines from history (for privacy and security)
21
22 SendMode Input ; optimizes for faster and more reliable input
23
24
25 ; Compose : Acute Accent (')
26
27 cmpAcuteAccent := ComObjCreate("Scripting.Dictionary")
28 cmpAcuteAccent.item["a"] := "{u+00e1}" ; (á) a with acute
29 cmpAcuteAccent.item["A"] := "{u+00c1}" ; (Á) A with acute
30 cmpAcuteAccent.item["c"] := "{u+0107}" ; (ć) c with acute
31 cmpAcuteAccent.item["C"] := "{u+0106}" ; (Ć) C with acute
32 cmpAcuteAccent.item["d"] := "{u+1e09}" ; (ḉ) c with cedilla and acute
33 cmpAcuteAccent.item["D"] := "{u+1e08}" ; (Ḉ) C with cedilla and acute
34 cmpAcuteAccent.item["e"] := "{u+00e9}" ; (é) e with acute
35 cmpAcuteAccent.item["E"] := "{u+00c9}" ; (É) E with acute
36 cmpAcuteAccent.item["g"] := "{u+01f5}" ; (ǵ) g with acute
37 cmpAcuteAccent.item["G"] := "{u+01f4}" ; (Ǵ) G with acute
38 cmpAcuteAccent.item["i"] := "{u+00ed}" ; (í) i with acute
39 cmpAcuteAccent.item["I"] := "{u+00cd}" ; (Í) I with acute
40 cmpAcuteAccent.item["j"] := "{u+01ff}" ; (ǿ) o with stroke and acute
41 cmpAcuteAccent.item["J"] := "{u+01fe}" ; (Ǿ) O with stroke and acute
42 cmpAcuteAccent.item["k"] := "{u+1e31}" ; (ḱ) k with acute
43 cmpAcuteAccent.item["K"] := "{u+1e30}" ; (Ḱ) K with acute
44 cmpAcuteAccent.item["l"] := "{u+013a}" ; (ĺ) l with acute
45 cmpAcuteAccent.item["L"] := "{u+0139}" ; (Ĺ) L with acute
46 cmpAcuteAccent.item["m"] := "{u+1e3f}" ; (ḿ) m with acute
47 cmpAcuteAccent.item["M"] := "{u+1e3e}" ; (Ḿ) M with acute
48 cmpAcuteAccent.item["n"] := "{u+0144}" ; (ń) n with acute
49 cmpAcuteAccent.item["N"] := "{u+0143}" ; (Ń) N with acute
50 cmpAcuteAccent.item["o"] := "{u+00f3}" ; (ó) o with acute
51 cmpAcuteAccent.item["O"] := "{u+00d3}" ; (Ó) O with acute
52 cmpAcuteAccent.item["p"] := "{u+1e55}" ; (ṕ) p with acute
53 cmpAcuteAccent.item["P"] := "{u+1e54}" ; (Ṕ) P with acute
54 cmpAcuteAccent.item["q"] := "{u+01fd}" ; (ǽ) ae with acute
55 cmpAcuteAccent.item["Q"] := "{u+01fc}" ; (Ǽ) AE with acute
56 cmpAcuteAccent.item["r"] := "{u+0155}" ; (ŕ) r with acute
57 cmpAcuteAccent.item["R"] := "{u+0154}" ; (Ŕ) R with acute
58 cmpAcuteAccent.item["s"] := "{u+015b}" ; (ś) s with acute
59 cmpAcuteAccent.item["S"] := "{u+015a}" ; (Ś) S with acute
60 cmpAcuteAccent.item["u"] := "{u+00fa}" ; (ú) u with acute
61 cmpAcuteAccent.item["U"] := "{u+00da}" ; (Ú) U with acute
62 cmpAcuteAccent.item["w"] := "{u+1e83}" ; (ẃ) w with acute
63 cmpAcuteAccent.item["W"] := "{u+1e82}" ; (Ẃ) W with acute
64 cmpAcuteAccent.item["x"] := "{u+01fb}" ; (ǻ) a with ring above and acute
65 cmpAcuteAccent.item["X"] := "{u+01fa}" ; (Ǻ) A with ring above and acute
66 cmpAcuteAccent.item["y"] := "{u+00fd}" ; (ý) y with acute
67 cmpAcuteAccent.item["Y"] := "{u+00dd}" ; (Ý) Y with acute
68 cmpAcuteAccent.item["z"] := "{u+017a}" ; (ź) z with acute
69 cmpAcuteAccent.item["Z"] := "{u+0179}" ; (Ź) Z with acute
70
71
72 ; Compose : Grave Accent (`)
73
74 cmpGraveAccent := ComObjCreate("Scripting.Dictionary")
75 cmpGraveAccent.item["a"] := "{u+00e0}" ; (à) a with grave
76 cmpGraveAccent.item["A"] := "{u+00c0}" ; (À) A with grave
77 cmpGraveAccent.item["e"] := "{u+00e8}" ; (è) e with grave
78 cmpGraveAccent.item["E"] := "{u+00c8}" ; (È) E with grave
79 cmpGraveAccent.item["i"] := "{u+00ec}" ; (ì) i with grave
80 cmpGraveAccent.item["I"] := "{u+00cc}" ; (Ì) I with grave
81 cmpGraveAccent.item["n"] := "{u+01f9}" ; (ǹ) n with grave
82 cmpGraveAccent.item["N"] := "{u+01f8}" ; (Ǹ) N with grave
83 cmpGraveAccent.item["o"] := "{u+00f2}" ; (ò) o with grave
84 cmpGraveAccent.item["O"] := "{u+00d2}" ; (Ò) O with grave
85 cmpGraveAccent.item["u"] := "{u+00f9}" ; (ù) u with grave
86 cmpGraveAccent.item["U"] := "{u+00d9}" ; (Ù) U with grave
87 cmpGraveAccent.item["w"] := "{u+1e81}" ; (ẁ) w with grave
88 cmpGraveAccent.item["W"] := "{u+1e80}" ; (Ẁ) W with grave
89 cmpGraveAccent.item["y"] := "{u+1ef3}" ; (ỳ) y with grave
90 cmpGraveAccent.item["Y"] := "{u+1ef2}" ; (Ỳ) Y with grave
91
92
93 ; Compose : Diaeresis (")
94
95 cmpDiaeresis := ComObjCreate("Scripting.Dictionary")
96 cmpDiaeresis.item["a"] := "{u+00e4}" ; (ä) a with diaeresis
97 cmpDiaeresis.item["A"] := "{u+00c4}" ; (Ä) A with diaeresis
98 cmpDiaeresis.item["e"] := "{u+00eb}" ; (ë) e with diaeresis
99 cmpDiaeresis.item["E"] := "{u+00cb}" ; (Ë) E with diaeresis
100 cmpDiaeresis.item["h"] := "{u+1e27}" ; (ḧ) h with diaeresis
101 cmpDiaeresis.item["H"] := "{u+1e26}" ; (Ḧ) H with diaeresis
102 cmpDiaeresis.item["i"] := "{u+00ef}" ; (ï) i with diaeresis
103 cmpDiaeresis.item["I"] := "{u+00cf}" ; (Ï) I with diaeresis
104 cmpDiaeresis.item["o"] := "{u+00f6}" ; (ö) o with diaeresis
105 cmpDiaeresis.item["O"] := "{u+00d6}" ; (Ö) O with diaeresis
106 cmpDiaeresis.item["t"] := "{u+1e97}" ; (ẗ) t with diaeresis
107 cmpDiaeresis.item["u"] := "{u+00fc}" ; (ü) u with diaeresis
108 cmpDiaeresis.item["U"] := "{u+00dc}" ; (Ü) U with diaeresis
109 cmpDiaeresis.item["w"] := "{u+1e85}" ; (ẅ) w with diaeresis
110 cmpDiaeresis.item["W"] := "{u+1e84}" ; (Ẅ) W with diaeresis
111 cmpDiaeresis.item["x"] := "{u+1e8d}" ; (ẍ) x with diaeresis
112 cmpDiaeresis.item["X"] := "{u+1e8c}" ; (Ẍ) X with diaeresis
113 cmpDiaeresis.item["y"] := "{u+00ff}" ; (ÿ) y with diaeresis
114 cmpDiaeresis.item["Y"] := "{u+0178}" ; (Ÿ) Y with diaeresis
115
116
117 ; Compose : Circumflex Accent (c)
118
119 cmpCircumflex := ComObjCreate("Scripting.Dictionary")
120 cmpCircumflex.item["a"] := "{u+00e2}" ; (â) a with circumflex
121 cmpCircumflex.item["A"] := "{u+00c2}" ; (Â) A with circumflex
122 cmpCircumflex.item["c"] := "{u+0109}" ; (ĉ) c with circumflex
123 cmpCircumflex.item["C"] := "{u+0108}" ; (Ĉ) C with circumflex
124 cmpCircumflex.item["e"] := "{u+00ea}" ; (ê) e with circumflex
125 cmpCircumflex.item["E"] := "{u+00ca}" ; (Ê) E with circumflex
126 cmpCircumflex.item["g"] := "{u+011d}" ; (ĝ) g with circumflex
127 cmpCircumflex.item["G"] := "{u+011c}" ; (Ĝ) G with circumflex
128 cmpCircumflex.item["h"] := "{u+0125}" ; (ĥ) h with circumflex
129 cmpCircumflex.item["H"] := "{u+0124}" ; (Ĥ) H with circumflex
130 cmpCircumflex.item["i"] := "{u+00ee}" ; (î) i with circumflex
131 cmpCircumflex.item["I"] := "{u+00ce}" ; (Î) I with circumflex
132 cmpCircumflex.item["j"] := "{u+0135}" ; (ĵ) j with circumflex
133 cmpCircumflex.item["J"] := "{u+0134}" ; (Ĵ) J with circumflex
134 cmpCircumflex.item["o"] := "{u+00f4}" ; (ô) o with circumflex
135 cmpCircumflex.item["O"] := "{u+00d4}" ; (Ô) O with circumflex
136 cmpCircumflex.item["s"] := "{u+015d}" ; (ŝ) s with circumflex
137 cmpCircumflex.item["S"] := "{u+015c}" ; (Ŝ) S with circumflex
138 cmpCircumflex.item["u"] := "{u+00fb}" ; (û) u with circumflex
139 cmpCircumflex.item["U"] := "{u+00db}" ; (Û) U with circumflex
140 cmpCircumflex.item["w"] := "{u+0175}" ; (ŵ) w with circumflex
141 cmpCircumflex.item["W"] := "{u+0174}" ; (Ŵ) W with circumflex
142 cmpCircumflex.item["y"] := "{u+0177}" ; (ŷ) y with circumflex
143 cmpCircumflex.item["Y"] := "{u+0176}" ; (Ŷ) Y with circumflex
144 cmpCircumflex.item["z"] := "{u+1e91}" ; (ẑ) z with circumflex
145 cmpCircumflex.item["Z"] := "{u+1e90}" ; (Ẑ) Z with circumflex
146
147
148 ; Compose : Tilde (~)
149
150 cmpTilde := ComObjCreate("Scripting.Dictionary")
151 cmpTilde.item["a"] := "{u+00e3}" ; (ã) a with tilde
152 cmpTilde.item["A"] := "{u+00c3}" ; (Ã) A with tilde
153 cmpTilde.item["e"] := "{u+1ebd}" ; (ẽ) e with tilde
154 cmpTilde.item["E"] := "{u+1ebc}" ; (Ẽ) E with tilde
155 cmpTilde.item["i"] := "{u+0129}" ; (ĩ) i with tilde
156 cmpTilde.item["I"] := "{u+0128}" ; (Ĩ) I with tilde
157 cmpTilde.item["l"] := "{u+026b}" ; (ɫ) l with middle tilde
158 cmpTilde.item["L"] := "{u+2c62}" ; (Ɫ) L with middle tilde
159 cmpTilde.item["n"] := "{u+00f1}" ; (ñ) n with tilde
160 cmpTilde.item["N"] := "{u+00d1}" ; (Ñ) N with tilde
161 cmpTilde.item["o"] := "{u+00f5}" ; (õ) o with tilde
162 cmpTilde.item["O"] := "{u+00d5}" ; (Õ) O with tilde
163 cmpTilde.item["u"] := "{u+0169}" ; (ũ) u with tilde
164 cmpTilde.item["U"] := "{u+0168}" ; (Ũ) U with tilde
165 cmpTilde.item["v"] := "{u+1e7d}" ; (ṽ) v with tilde
166 cmpTilde.item["V"] := "{u+1e7c}" ; (Ṽ) V with tilde
167 cmpTilde.item["y"] := "{u+1ef9}" ; (ỹ) y with tilde
168 cmpTilde.item["Y"] := "{u+1ef8}" ; (Ỹ) Y with tilde
169
170
171 ; Compose : Cedilla and Ogonek (,)
172
173 cmpCedillaOgonek := ComObjCreate("Scripting.Dictionary")
174 cmpCedillaOgonek.item["a"] := "{u+0105}" ; (ą) a with ogonek
175 cmpCedillaOgonek.item["A"] := "{u+0104}" ; (Ą) A with ogonek
176 cmpCedillaOgonek.item["c"] := "{u+00e7}" ; (ç) c with cedilla
177 cmpCedillaOgonek.item["C"] := "{u+00c7}" ; (Ç) C with cedilla
178 cmpCedillaOgonek.item["d"] := "{u+1e11}" ; (ḑ) d with cedilla
179 cmpCedillaOgonek.item["D"] := "{u+1e10}" ; (Ḑ) D with cedilla
180 cmpCedillaOgonek.item["e"] := "{u+0119}" ; (ę) e with ogonek
181 cmpCedillaOgonek.item["E"] := "{u+0118}" ; (Ę) E with ogonek
182 cmpCedillaOgonek.item["f"] := "{u+0229}" ; (ȩ) e with cedilla
183 cmpCedillaOgonek.item["F"] := "{u+0228}" ; (Ȩ) E with cedilla
184 cmpCedillaOgonek.item["g"] := "{u+0123}" ; (ģ) g with cedilla
185 cmpCedillaOgonek.item["G"] := "{u+0122}" ; (Ģ) G with cedilla
186 cmpCedillaOgonek.item["h"] := "{u+1e29}" ; (ḩ) h with cedilla
187 cmpCedillaOgonek.item["H"] := "{u+1e28}" ; (Ḩ) H with cedilla
188 cmpCedillaOgonek.item["i"] := "{u+012f}" ; (į) i with ogonek
189 cmpCedillaOgonek.item["I"] := "{u+012e}" ; (Į) I with ogonek
190 cmpCedillaOgonek.item["k"] := "{u+0137}" ; (ķ) k with cedilla
191 cmpCedillaOgonek.item["K"] := "{u+0136}" ; (Ķ) K with cedilla
192 cmpCedillaOgonek.item["l"] := "{u+013c}" ; (ļ) l with cedilla
193 cmpCedillaOgonek.item["L"] := "{u+013b}" ; (Ļ) L with cedilla
194 cmpCedillaOgonek.item["n"] := "{u+0146}" ; (ņ) n with cedilla
195 cmpCedillaOgonek.item["N"] := "{u+0145}" ; (Ņ) N with cedilla
196 cmpCedillaOgonek.item["o"] := "{u+01eb}" ; (ǫ) o with ogonek
197 cmpCedillaOgonek.item["O"] := "{u+01ea}" ; (Ǫ) O with ogonek
198 cmpCedillaOgonek.item["r"] := "{u+0157}" ; (ŗ) r with cedilla
199 cmpCedillaOgonek.item["R"] := "{u+0156}" ; (Ŗ) R with cedilla
200 cmpCedillaOgonek.item["s"] := "{u+015f}" ; (ş) s with cedilla
201 cmpCedillaOgonek.item["S"] := "{u+015e}" ; (Ş) S with cedilla
202 cmpCedillaOgonek.item["t"] := "{u+0163}" ; (ţ) t with cedilla
203 cmpCedillaOgonek.item["T"] := "{u+0162}" ; (Ţ) T with cedilla
204 cmpCedillaOgonek.item["u"] := "{u+0173}" ; (ų) u with ogonek
205 cmpCedillaOgonek.item["U"] := "{u+0172}" ; (Ų) U with ogonek
206
207
208 ; Compose : Caron (v)
209
210 cmpCaron := ComObjCreate("Scripting.Dictionary")
211 cmpCaron.item["a"] := "{u+01ce}" ; (ǎ) a with caron
212 cmpCaron.item["A"] := "{u+01cd}" ; (Ǎ) A with caron
213 cmpCaron.item["c"] := "{u+010d}" ; (č) c with caron
214 cmpCaron.item["C"] := "{u+010c}" ; (Č) C with caron
215 cmpCaron.item["d"] := "{u+010f}" ; (ď) d with caron
216 cmpCaron.item["D"] := "{u+010e}" ; (Ď) D with caron
217 cmpCaron.item["e"] := "{u+011b}" ; (ě) e with caron
218 cmpCaron.item["E"] := "{u+011a}" ; (Ě) E with caron
219 cmpCaron.item["g"] := "{u+01e7}" ; (ǧ) g with caron
220 cmpCaron.item["G"] := "{u+01e6}" ; (Ǧ) G with caron
221 cmpCaron.item["h"] := "{u+021f}" ; (ȟ) h with caron
222 cmpCaron.item["H"] := "{u+021e}" ; (Ȟ) H with caron
223 cmpCaron.item["i"] := "{u+01d0}" ; (ǐ) i with caron
224 cmpCaron.item["I"] := "{u+01cf}" ; (Ǐ) I with caron
225 cmpCaron.item["j"] := "{u+01f0}" ; (ǰ) j with caron
226 cmpCaron.item["k"] := "{u+01e9}" ; (ǩ) k with caron
227 cmpCaron.item["K"] := "{u+01e8}" ; (Ǩ) K with caron
228 cmpCaron.item["l"] := "{u+013e}" ; (ľ) l with caron
229 cmpCaron.item["L"] := "{u+013d}" ; (Ľ) L with caron
230 cmpCaron.item["n"] := "{u+0148}" ; (ň) n with caron
231 cmpCaron.item["N"] := "{u+0147}" ; (Ň) N with caron
232 cmpCaron.item["o"] := "{u+01d2}" ; (ǒ) o with caron
233 cmpCaron.item["O"] := "{u+01d1}" ; (Ǒ) O with caron
234 cmpCaron.item["r"] := "{u+0159}" ; (ř) r with caron
235 cmpCaron.item["R"] := "{u+0158}" ; (Ř) R with caron
236 cmpCaron.item["s"] := "{u+0161}" ; (š) s with caron
237 cmpCaron.item["S"] := "{u+0160}" ; (Š) S with caron
238 cmpCaron.item["t"] := "{u+0165}" ; (ť) t with caron
239 cmpCaron.item["T"] := "{u+0164}" ; (Ť) T with caron
240 cmpCaron.item["u"] := "{u+01d4}" ; (ǔ) u with caron
241 cmpCaron.item["U"] := "{u+01d3}" ; (Ǔ) U with caron
242 cmpCaron.item["z"] := "{u+017e}" ; (ž) z with caron
243 cmpCaron.item["Z"] := "{u+017d}" ; (Ž) Z with caron
244 cmpCaron.item["3"] := "{u+01ef}" ; (ǯ) small letter ezh with caron
245 cmpCaron.item["#"] := "{u+01ee}" ; (Ǯ) capital letter ezh with caron
246
247
248 ; Compose : Dot Above (.)
249
250 cmpDotAbove := ComObjCreate("Scripting.Dictionary")
251 cmpDotAbove.item["a"] := "{u+0227}" ; (ȧ) a with dot above
252 cmpDotAbove.item["A"] := "{u+0226}" ; (Ȧ) A with dot above
253 cmpDotAbove.item["b"] := "{u+1e03}" ; (ḃ) b with dot above
254 cmpDotAbove.item["B"] := "{u+1e02}" ; (Ḃ) B with dot above
255 cmpDotAbove.item["c"] := "{u+010b}" ; (ċ) c with dot above
256 cmpDotAbove.item["C"] := "{u+010a}" ; (Ċ) C with dot above
257 cmpDotAbove.item["d"] := "{u+1e0b}" ; (ḋ) d with dot above
258 cmpDotAbove.item["D"] := "{u+1e0a}" ; (Ḋ) D with dot above
259 cmpDotAbove.item["e"] := "{u+0117}" ; (ė) e with dot above
260 cmpDotAbove.item["E"] := "{u+0116}" ; (Ė) E with dot above
261 cmpDotAbove.item["f"] := "{u+1e1f}" ; (ḟ) f with dot above
262 cmpDotAbove.item["F"] := "{u+1e1e}" ; (Ḟ) F with dot above
263 cmpDotAbove.item["g"] := "{u+0121}" ; (ġ) g with dot above
264 cmpDotAbove.item["G"] := "{u+0120}" ; (Ġ) G with dot above
265 cmpDotAbove.item["h"] := "{u+1e23}" ; (ḣ) h with dot above
266 cmpDotAbove.item["H"] := "{u+1e22}" ; (Ḣ) H with dot above
267 cmpDotAbove.item["i"] := "{u+0131}" ; (ı) dotless i (Turkish, Azerbaijani)
268 cmpDotAbove.item["I"] := "{u+0130}" ; (İ) I with dot above (Turkish, Azerbaijani)
269 cmpDotAbove.item["j"] := "{u+0237}" ; (ȷ) dotless j
270 cmpDotAbove.item["l"] := "{u+0140}" ; (ŀ) l with middle dot
271 cmpDotAbove.item["L"] := "{u+013f}" ; (Ŀ) L with middle dot
272 cmpDotAbove.item["m"] := "{u+1e41}" ; (ṁ) m with dot above
273 cmpDotAbove.item["M"] := "{u+1e40}" ; (Ṁ) M with dot above
274 cmpDotAbove.item["n"] := "{u+1e45}" ; (ṅ) n with dot above
275 cmpDotAbove.item["N"] := "{u+1e44}" ; (Ṅ) N with dot above
276 cmpDotAbove.item["o"] := "{u+022f}" ; (ȯ) o with dot above
277 cmpDotAbove.item["O"] := "{u+022e}" ; (Ȯ) O with dot above
278 cmpDotAbove.item["p"] := "{u+1e57}" ; (ṗ) p with dot above
279 cmpDotAbove.item["P"] := "{u+1e56}" ; (Ṗ) P with dot above
280 cmpDotAbove.item["q"] := "{u+1e9b}" ; (ẛ) long s with dot above
281 cmpDotAbove.item["r"] := "{u+1e59}" ; (ṙ) r with dot above
282 cmpDotAbove.item["R"] := "{u+1e58}" ; (Ṙ) R with dot above
283 cmpDotAbove.item["s"] := "{u+1e61}" ; (ṡ) s with dot above
284 cmpDotAbove.item["S"] := "{u+1e60}" ; (Ṡ) S with dot above
285 cmpDotAbove.item["t"] := "{u+1e6b}" ; (ṫ) t with dot above
286 cmpDotAbove.item["T"] := "{u+1e6a}" ; (Ṫ) T with dot above
287 cmpDotAbove.item["u"] := "{u+016f}" ; (ů) u with ring above
288 cmpDotAbove.item["U"] := "{u+016e}" ; (Ů) U with ring above
289 cmpDotAbove.item["w"] := "{u+1e87}" ; (ẇ) w with dot above
290 cmpDotAbove.item["W"] := "{u+1e86}" ; (Ẇ) W with dot above
291 cmpDotAbove.item["x"] := "{u+1e8b}" ; (ẋ) x with dot above
292 cmpDotAbove.item["X"] := "{u+1e8a}" ; (Ẋ) X with dot above
293 cmpDotAbove.item["y"] := "{u+1e8f}" ; (ẏ) y with dot above
294 cmpDotAbove.item["Y"] := "{u+1e8e}" ; (Ẏ) Y with dot above
295 cmpDotAbove.item["z"] := "{u+017c}" ; (ż) z with dot above
296 cmpDotAbove.item["Z"] := "{u+017b}" ; (Ż) Z with dot above
297
298
299 ; Compose : Ring Above (o)
300
301 cmpRingAbove := ComObjCreate("Scripting.Dictionary")
302 cmpRingAbove.item["a"] := "{u+00e5}" ; (å) a with ring above
303 cmpRingAbove.item["A"] := "{u+00c5}" ; (Å) A with ring above
304 cmpRingAbove.item["u"] := "{u+016f}" ; (ů) u with ring above
305 cmpRingAbove.item["U"] := "{u+016e}" ; (Ů) U with ring above
306 cmpRingAbove.item["w"] := "{u+1e98}" ; (ẘ) w with ring above
307 cmpRingAbove.item["y"] := "{u+1e99}" ; (ẙ) y with ring above
308
309
310 ; Compose : Macron and Stroke (-)
311
312 cmpMacronStroke := ComObjCreate("Scripting.Dictionary")
313 cmpMacronStroke.item["a"] := "{u+0101}" ; (ā) a with macron
314 cmpMacronStroke.item["A"] := "{u+0100}" ; (Ā) A with macron
315 cmpMacronStroke.item["b"] := "{u+0180}" ; (ƀ) b with stroke
316 cmpMacronStroke.item["B"] := "{u+0243}" ; (Ƀ) B with stroke
317 cmpMacronStroke.item["d"] := "{u+0111}" ; (đ) d with stroke
318 cmpMacronStroke.item["D"] := "{u+0110}" ; (Đ) D with stroke
319 cmpMacronStroke.item["e"] := "{u+0113}" ; (ē) e with macron
320 cmpMacronStroke.item["E"] := "{u+0112}" ; (Ē) E with macron
321 cmpMacronStroke.item["g"] := "{u+01e5}" ; (ǥ) g with stroke (Skolt Sami)
322 cmpMacronStroke.item["G"] := "{u+01e4}" ; (Ǥ) G with stroke (Skolt Sami)
323 cmpMacronStroke.item["h"] := "{u+0127}" ; (ħ) h with stroke (Maltese)
324 cmpMacronStroke.item["H"] := "{u+0126}" ; (Ħ) H with stroke (Maltese)
325 cmpMacronStroke.item["i"] := "{u+012b}" ; (ī) i with macron
326 cmpMacronStroke.item["I"] := "{u+012a}" ; (Ī) I with macron
327 cmpMacronStroke.item["j"] := "{u+0249}" ; (ɉ) j with stroke
328 cmpMacronStroke.item["J"] := "{u+0248}" ; (Ɉ) J with stroke
329 cmpMacronStroke.item["l"] := "{u+0142}" ; (ł) l with stroke
330 cmpMacronStroke.item["L"] := "{u+0141}" ; (Ł) L with stroke
331 cmpMacronStroke.item["o"] := "{u+014d}" ; (ō) o with macron
332 cmpMacronStroke.item["O"] := "{u+014c}" ; (Ō) O with macron
333 cmpMacronStroke.item["p"] := "{u+1d7d}" ; (ᵽ) p with stroke
334 cmpMacronStroke.item["P"] := "{u+2c63}" ; (Ᵽ) P with stroke
335 cmpMacronStroke.item["q"] := "{u+01ed}" ; (ǭ) o with ogonek and macron
336 cmpMacronStroke.item["Q"] := "{u+01ec}" ; (Ǭ) O with ogonek and macron
337 cmpMacronStroke.item["r"] := "{u+024d}" ; (ɍ) r with stroke
338 cmpMacronStroke.item["R"] := "{u+024c}" ; (Ɍ) R with stroke
339 cmpMacronStroke.item["t"] := "{u+0167}" ; (ŧ) t with stroke
340 cmpMacronStroke.item["T"] := "{u+0166}" ; (Ŧ) T with stroke
341 cmpMacronStroke.item["u"] := "{u+016b}" ; (ū) u with macron
342 cmpMacronStroke.item["U"] := "{u+016a}" ; (Ū) U with macron
343 cmpMacronStroke.item["y"] := "{u+0233}" ; (ȳ) y with macron
344 cmpMacronStroke.item["Y"] := "{u+0232}" ; (Ȳ) Y with macron
345 cmpMacronStroke.item["z"] := "{u+01b6}" ; (ƶ) z with stroke
346 cmpMacronStroke.item["Z"] := "{u+01b5}" ; (Ƶ) Z with stroke
347
348
349 ; Compose : Macron and Stroke (additional) (_)
350
351 cmpMacronStrokeAdd := ComObjCreate("Scripting.Dictionary")
352 cmpMacronStrokeAdd.item["f"] := "{u+1e9d}" ; (ẝ) long s with high stroke
353 cmpMacronStrokeAdd.item["g"] := "{u+1e21}" ; (ḡ) g with macron
354 cmpMacronStrokeAdd.item["G"] := "{u+1e20}" ; (Ḡ) G with macron
355 cmpMacronStrokeAdd.item["i"] := "{u+0268}" ; (ɨ) i with stroke
356 cmpMacronStrokeAdd.item["I"] := "{u+0197}" ; (Ɨ) I with stroke
357 cmpMacronStrokeAdd.item["l"] := "{u+019a}" ; (ƚ) l with bar
358 cmpMacronStrokeAdd.item["L"] := "{u+023d}" ; (Ƚ) L with bar
359 cmpMacronStrokeAdd.item["o"] := "{u+0275}" ; (ɵ) barred o
360 cmpMacronStrokeAdd.item["O"] := "{u+019f}" ; (Ɵ) O with middle tilde
361 cmpMacronStrokeAdd.item["q"] := "{u+01e3}" ; (ǣ) ae with macron
362 cmpMacronStrokeAdd.item["Q"] := "{u+01e2}" ; (Ǣ) AE with macron
363 cmpMacronStrokeAdd.item["u"] := "{u+0289}" ; (ʉ) u with bar
364 cmpMacronStrokeAdd.item["U"] := "{u+0244}" ; (Ʉ) U with bar
365 cmpMacronStrokeAdd.item["y"] := "{u+024f}" ; (ɏ) y with stroke
366 cmpMacronStrokeAdd.item["Y"] := "{u+024e}" ; (Ɏ) Y with stroke
367
368
369 ; Compose : Oblique/Diagonal Stroke (/)
370
371 cmpStroke := ComObjCreate("Scripting.Dictionary")
372 cmpStroke.item["a"] := "{u+2c65}" ; (ⱥ) a with stroke
373 cmpStroke.item["A"] := "{u+023a}" ; (Ⱥ) A with stroke
374 cmpStroke.item["c"] := "{u+023c}" ; (ȼ) c with stroke
375 cmpStroke.item["C"] := "{u+023b}" ; (Ȼ) C with stroke
376 cmpStroke.item["e"] := "{u+0247}" ; (ɇ) e with stroke
377 cmpStroke.item["E"] := "{u+0246}" ; (Ɇ) E with stroke
378 cmpStroke.item["f"] := "{u+1e9c}" ; (ẜ) long s with diagonal stroke
379 cmpStroke.item["g"] := "{u+a7a1}" ; (ꞡ) g with oblique stroke
380 cmpStroke.item["G"] := "{u+a7a0}" ; (Ꞡ) G with oblique stroke
381 cmpStroke.item["k"] := "{u+a7a3}" ; (ꞣ) k with oblique stroke
382 cmpStroke.item["K"] := "{u+a7a2}" ; (Ꞣ) K with oblique stroke
383 cmpStroke.item["l"] := "{u+0142}" ; (ł) l with stroke
384 cmpStroke.item["L"] := "{u+0141}" ; (Ł) L with stroke
385 cmpStroke.item["n"] := "{u+a7a5}" ; (ꞥ) n with oblique stroke
386 cmpStroke.item["N"] := "{u+a7a4}" ; (Ꞥ) N with oblique stroke
387 cmpStroke.item["o"] := "{u+00f8}" ; (ø) o with stroke
388 cmpStroke.item["O"] := "{u+00d8}" ; (Ø) O with stroke
389 cmpStroke.item["r"] := "{u+a7a7}" ; (ꞧ) r with oblique stroke
390 cmpStroke.item["R"] := "{u+a7a6}" ; (Ꞧ) R with oblique stroke
391 cmpStroke.item["s"] := "{u+a7a9}" ; (ꞩ) s with oblique stroke
392 cmpStroke.item["S"] := "{u+a7a8}" ; (Ꞩ) S with oblique stroke
393 cmpStroke.item["t"] := "{u+2c66}" ; (ⱦ) t with stroke
394 cmpStroke.item["T"] := "{u+023e}" ; (Ⱦ) T with stroke
395
396
397 ; Compose : Breve and Special Letters (b)
398
399 cmpBreveSpecial := ComObjCreate("Scripting.Dictionary")
400 cmpBreveSpecial.item["a"] := "{u+0103}" ; (ă) a with breve
401 cmpBreveSpecial.item["A"] := "{u+0102}" ; (Ă) A with breve
402 cmpBreveSpecial.item["d"] := "{u+0256}" ; (ɖ) small letter d with tail
403 cmpBreveSpecial.item["D"] := "{u+0189}" ; (Ɖ) capital letter African D
404 cmpBreveSpecial.item["e"] := "{u+0115}" ; (ĕ) e with breve
405 cmpBreveSpecial.item["E"] := "{u+0114}" ; (Ĕ) E with breve
406 cmpBreveSpecial.item["f"] := "{u+0259}" ; (ə) small letter schwa (Azerbaijani)
407 cmpBreveSpecial.item["F"] := "{u+018f}" ; (Ə) capital letter schwa (Azerbaijani)
408 cmpBreveSpecial.item["g"] := "{u+011f}" ; (ğ) g with breve
409 cmpBreveSpecial.item["G"] := "{u+011e}" ; (Ğ) G with breve
410 cmpBreveSpecial.item["i"] := "{u+012d}" ; (ĭ) i with breve
411 cmpBreveSpecial.item["I"] := "{u+012c}" ; (Ĭ) I with breve
412 cmpBreveSpecial.item["o"] := "{u+014f}" ; (ŏ) o with breve
413 cmpBreveSpecial.item["O"] := "{u+014e}" ; (Ŏ) O with breve
414 cmpBreveSpecial.item["s"] := "{u+0219}" ; (ș) s with comma below (Romanian)
415 cmpBreveSpecial.item["S"] := "{u+0218}" ; (Ș) S with comma below (Romanian)
416 cmpBreveSpecial.item["t"] := "{u+021b}" ; (ț) t with comma below (Romanian)
417 cmpBreveSpecial.item["T"] := "{u+021a}" ; (Ț) T with comma below (Romanian)
418 cmpBreveSpecial.item["u"] := "{u+016d}" ; (ŭ) u with breve
419 cmpBreveSpecial.item["U"] := "{u+016c}" ; (Ŭ) U with breve
420 cmpBreveSpecial.item["w"] := "{u+01bf}" ; (ƿ) small letter wynn
421 cmpBreveSpecial.item["W"] := "{u+01f7}" ; (Ƿ) capital letter wynn
422 cmpBreveSpecial.item["y"] := "{u+021d}" ; (ȝ) small letter yogh
423 cmpBreveSpecial.item["Y"] := "{u+021c}" ; (Ȝ) capital letter yogh
424 cmpBreveSpecial.item["3"] := "{u+0292}" ; (ʒ) small letter ezh
425 cmpBreveSpecial.item["#"] := "{u+01b7}" ; (Ʒ) capital letter ezh
426
427
428 ; Compose : Double Acute Accent (=)
429
430 cmpDoubleAcute := ComObjCreate("Scripting.Dictionary")
431 cmpDoubleAcute.item["o"] := "{u+0151}" ; (ő) o with double acute
432 cmpDoubleAcute.item["O"] := "{u+0150}" ; (Ő) O with double acute
433 cmpDoubleAcute.item["u"] := "{u+0171}" ; (ű) u with double acute
434 cmpDoubleAcute.item["U"] := "{u+0170}" ; (Ű) U with double acute
435
436
437 ; Compose : Hook, Horn and Variations (h)
438
439 cmpSmallH := ComObjCreate("Scripting.Dictionary")
440 cmpSmallH.item["b"] := "{u+0253}" ; (ɓ) b with hook
441 cmpSmallH.item["B"] := "{u+0181}" ; (Ɓ) B with hook
442 cmpSmallH.item["c"] := "{u+0188}" ; (ƈ) c with hook
443 cmpSmallH.item["C"] := "{u+0187}" ; (Ƈ) C with hook
444 cmpSmallH.item["d"] := "{u+0257}" ; (ɗ) d with hook
445 cmpSmallH.item["D"] := "{u+018a}" ; (Ɗ) D with hook
446 cmpSmallH.item["e"] := "{u+025a}" ; (ɚ) small letter schwa with hook
447 cmpSmallH.item["f"] := "{u+0192}" ; (ƒ) f with hook
448 cmpSmallH.item["F"] := "{u+0191}" ; (Ƒ) F with hook
449 cmpSmallH.item["g"] := "{u+0260}" ; (ɠ) g with hook
450 cmpSmallH.item["G"] := "{u+0193}" ; (Ɠ) G with hook
451 cmpSmallH.item["h"] := "{u+0266}" ; (ɦ) h with hook
452 cmpSmallH.item["H"] := "{u+a7aa}" ; (Ɦ) H with hook
453 cmpSmallH.item["j"] := "{u+0267}" ; (ɧ) small letter heng with hook
454 cmpSmallH.item["k"] := "{u+0199}" ; (ƙ) k with hook
455 cmpSmallH.item["K"] := "{u+0198}" ; (Ƙ) K with hook
456 cmpSmallH.item["l"] := "{u+026c}" ; (ɬ) l with belt
457 cmpSmallH.item["L"] := "{u+a7ad}" ; (Ɬ) L with belt
458 cmpSmallH.item["m"] := "{u+0271}" ; (ɱ) m with hook
459 cmpSmallH.item["M"] := "{u+2c6e}" ; (Ɱ) M with hook
460 cmpSmallH.item["n"] := "{u+0272}" ; (ɲ) n with left hook
461 cmpSmallH.item["N"] := "{u+019d}" ; (Ɲ) N with left hook
462 cmpSmallH.item["o"] := "{u+01a1}" ; (ơ) o with horn
463 cmpSmallH.item["O"] := "{u+01a0}" ; (Ơ) O with horn
464 cmpSmallH.item["p"] := "{u+01a5}" ; (ƥ) p with hook
465 cmpSmallH.item["P"] := "{u+01a4}" ; (Ƥ) P with hook
466 cmpSmallH.item["q"] := "{u+024b}" ; (ɋ) q with hook tail
467 cmpSmallH.item["Q"] := "{u+024a}" ; (Ɋ) Q with hook tail
468 cmpSmallH.item["r"] := "{u+027d}" ; (ɽ) r with tail
469 cmpSmallH.item["R"] := "{u+2c64}" ; (Ɽ) R with tail
470 cmpSmallH.item["s"] := "{u+0282}" ; (ʂ) s with hook
471 cmpSmallH.item["t"] := "{u+01ad}" ; (ƭ) t with hook
472 cmpSmallH.item["T"] := "{u+01ac}" ; (Ƭ) T with hook
473 cmpSmallH.item["u"] := "{u+01b0}" ; (ư) u with horn
474 cmpSmallH.item["U"] := "{u+01af}" ; (Ư) U with horn
475 cmpSmallH.item["v"] := "{u+028b}" ; (ʋ) v with hook
476 cmpSmallH.item["V"] := "{u+01b2}" ; (Ʋ) V with hook
477 cmpSmallH.item["w"] := "{u+2c73}" ; (ⱳ) w with hook
478 cmpSmallH.item["W"] := "{u+2c72}" ; (Ⱳ) W with hook
479 cmpSmallH.item["y"] := "{u+01b4}" ; (ƴ) y with hook
480 cmpSmallH.item["Y"] := "{u+01b3}" ; (Ƴ) Y with hook
481 cmpSmallH.item["z"] := "{u+0225}" ; (ȥ) z with hook
482 cmpSmallH.item["Z"] := "{u+0224}" ; (Ȥ) Z with hook
483
484
485 ; Compose : Retroflex Hook and Variations (f)
486
487 cmpSmallF := ComObjCreate("Scripting.Dictionary")
488 cmpSmallF.item["d"] := "{u+1d91}" ; (ᶑ) d with hook and tail
489 cmpSmallF.item["e"] := "{u+025d}" ; (ɝ) small letter reversed open e with hook
490 cmpSmallF.item["f"] := "{u+1d94}" ; (ᶔ) small letter reversed open e with retroflex hook
491 cmpSmallF.item["g"] := "{u+ab36}" ; (ꬶ) small letter script g with crossed-tail
492 cmpSmallF.item["h"] := "{u+a727}" ; (ꜧ) small letter heng
493 cmpSmallF.item["H"] := "{u+a726}" ; (Ꜧ) capital letter heng
494 cmpSmallF.item["j"] := "{u+029d}" ; (ʝ) j with crossed-tail
495 cmpSmallF.item["J"] := "{u+a7b2}" ; (Ʝ) J with crossed-tail
496 cmpSmallF.item["l"] := "{u+026d}" ; (ɭ) l with retroflex hook
497 cmpSmallF.item["n"] := "{u+0273}" ; (ɳ) n with retroflex hook
498 cmpSmallF.item["q"] := "{u+02a0}" ; (ʠ) q with hook
499 cmpSmallF.item["r"] := "{u+027e}" ; (ɾ) r with fishhook
500 cmpSmallF.item["t"] := "{u+0288}" ; (ʈ) t with retroflex hook
501 cmpSmallF.item["T"] := "{u+01ae}" ; (Ʈ) T with retroflex hook
502 cmpSmallF.item["v"] := "{u+2c71}" ; (ⱱ) v with right hook
503 cmpSmallF.item["z"] := "{u+0290}" ; (ʐ) z with retroflex hook
504
505
506 ; Compose : Swash Tail and Variations (t)
507
508 cmpSmallT := ComObjCreate("Scripting.Dictionary")
509 cmpSmallT.item["l"] := "{u+2c61}" ; (ⱡ) l with double bar
510 cmpSmallT.item["L"] := "{u+2c60}" ; (Ⱡ) L with double bar
511 cmpSmallT.item["s"] := "{u+023f}" ; (ȿ) s with swash tail
512 cmpSmallT.item["S"] := "{u+2c7e}" ; (Ȿ) S with swash tail
513 cmpSmallT.item["z"] := "{u+0240}" ; (ɀ) z with swash tail
514 cmpSmallT.item["Z"] := "{u+2c7f}" ; (Ɀ) Z with swash tail
515
516
517 ; Compose : Latin Greek Letters and Variations (l)
518
519 cmpSmallL := ComObjCreate("Scripting.Dictionary")
520 cmpSmallL.item["a"] := "{u+0251}" ; (ɑ) Latin small letter alpha
521 cmpSmallL.item["A"] := "{u+2c6d}" ; (Ɑ) Latin capital letter alpha
522 cmpSmallL.item["b"] := "{u+025e}" ; (ɞ) small letter closed reversed open e
523 cmpSmallL.item["d"] := "{u+1e9f}" ; (ẟ) Latin small letter delta
524 cmpSmallL.item["e"] := "{u+025b}" ; (ɛ) small letter open e (Latin small epsilon)
525 cmpSmallL.item["E"] := "{u+0190}" ; (Ɛ) capital letter open E (Latin capital epsilon)
526 cmpSmallL.item["f"] := "{u+0278}" ; (ɸ) Latin small letter phi
527 cmpSmallL.item["g"] := "{u+0261}" ; (ɡ) small letter script g
528 cmpSmallL.item["G"] := "{u+a7ac}" ; (Ɡ) capital letter script G
529 cmpSmallL.item["h"] := "{u+01a3}" ; (ƣ) small letter gha
530 cmpSmallL.item["H"] := "{u+01a2}" ; (Ƣ) capital letter gha
531 cmpSmallL.item["i"] := "{u+0269}" ; (ɩ) Latin small letter iota
532 cmpSmallL.item["I"] := "{u+0196}" ; (Ɩ) Latin capital letter iota
533 cmpSmallL.item["j"] := "{u+0263}" ; (ɣ) Latin small letter gamma
534 cmpSmallL.item["J"] := "{u+0194}" ; (Ɣ) Latin capital letter gamma
535 cmpSmallL.item["k"] := "{u+0138}" ; (ĸ) small letter kra
536 cmpSmallL.item["l"] := "{u+019b}" ; (ƛ) Latin small letter lambda with stroke (barred lambda)
537 cmpSmallL.item["m"] := "{u+0270}" ; (ɰ) small letter turned m with long leg
538 cmpSmallL.item["n"] := "{u+019e}" ; (ƞ) small letter n with long right leg
539 cmpSmallL.item["N"] := "{u+0220}" ; (Ƞ) capital letter N with long right leg
540 cmpSmallL.item["o"] := "{u+0254}" ; (ɔ) small letter open o
541 cmpSmallL.item["O"] := "{u+0186}" ; (Ɔ) capital letter open O
542 cmpSmallL.item["q"] := "{u+0277}" ; (ɷ) Latin small letter closed omega
543 cmpSmallL.item["s"] := "{u+0283}" ; (ʃ) Latin small letter esh
544 cmpSmallL.item["S"] := "{u+01a9}" ; (Ʃ) Latin capital letter esh
545 cmpSmallL.item["u"] := "{u+028a}" ; (ʊ) Latin small letter upsilon
546 cmpSmallL.item["U"] := "{u+01b1}" ; (Ʊ) Latin capital letter upsilon
547 cmpSmallL.item["8"] := "{u+0223}" ; (ȣ) small letter ou
548 cmpSmallL.item["*"] := "{u+0222}" ; (Ȣ) capital letter OU
549 cmpSmallL.item["7"] := "{u+0242}" ; (ɂ) small letter glottal stop
550 cmpSmallL.item["&"] := "{u+0241}" ; (Ɂ) capital letter glottal stop
551 cmpSmallL.item["?"] := "{u+0294}" ; (ʔ) unicase letter glottal stop
552
553
554 ; Compose : Turned and Reversed Letters (r)
555
556 cmpSmallR := ComObjCreate("Scripting.Dictionary")
557 cmpSmallR.item["a"] := "{u+0250}" ; (ɐ) small letter turned a
558 cmpSmallR.item["A"] := "{u+2c6f}" ; (Ɐ) capital letter turned A
559 cmpSmallR.item["b"] := "{u+025c}" ; (ɜ) small letter reversed open e
560 cmpSmallR.item["B"] := "{u+a7ab}" ; (Ɜ) capital letter reversed open E
561 cmpSmallR.item["d"] := "{u+018d}" ; (ƍ) Latin small letter turned delta
562 cmpSmallR.item["e"] := "{u+01dd}" ; (ǝ) small letter turned e
563 cmpSmallR.item["E"] := "{u+018e}" ; (Ǝ) capital letter reversed E
564 cmpSmallR.item["f"] := "{u+0258}" ; (ɘ) small letter reversed e
565 cmpSmallR.item["g"] := "{u+1d77}" ; (ᵷ) small letter turned g
566 cmpSmallR.item["G"] := "{u+2141}" ; (⅁) capital letter turned G
567 cmpSmallR.item["h"] := "{u+0265}" ; (ɥ) small letter turned h
568 cmpSmallR.item["H"] := "{u+a78d}" ; (Ɥ) capital letter turned H
569 cmpSmallR.item["i"] := "{u+1d09}" ; (ᴉ) small letter turned i
570 cmpSmallR.item["k"] := "{u+029e}" ; (ʞ) small letter turned k
571 cmpSmallR.item["K"] := "{u+a7b0}" ; (Ʞ) capital letter turned K
572 cmpSmallR.item["m"] := "{u+026f}" ; (ɯ) small letter turned m
573 cmpSmallR.item["M"] := "{u+019c}" ; (Ɯ) capital letter turned M
574 cmpSmallR.item["o"] := "{u+0264}" ; (ɤ) small letter ram's horn (baby gamma)
575 cmpSmallR.item["q"] := "{u+0252}" ; (ɒ) Latin small letter turned alpha
576 cmpSmallR.item["Q"] := "{u+2c70}" ; (Ɒ) Latin capital letter turned alpha
577 cmpSmallR.item["r"] := "{u+0279}" ; (ɹ) small letter turned r
578 cmpSmallR.item["t"] := "{u+0287}" ; (ʇ) small letter turned t
579 cmpSmallR.item["T"] := "{u+a7b1}" ; (Ʇ) small letter turned T
580 cmpSmallR.item["v"] := "{u+028c}" ; (ʌ) small letter turned v
581 cmpSmallR.item["V"] := "{u+0245}" ; (Ʌ) capital letter turned V
582 cmpSmallR.item["w"] := "{u+028d}" ; (ʍ) small letter turned w
583 cmpSmallR.item["y"] := "{u+028e}" ; (ʎ) small letter turned y
584 cmpSmallR.item["z"] := "{u+01b9}" ; (ƹ) Latin small letter ezh reversed
585 cmpSmallR.item["Z"] := "{u+01b8}" ; (Ƹ) Latin capital letter ezh reversed
586
587
588 ; Compose : Currency Symbols ($)
589
590 cmpCurrency := ComObjCreate("Scripting.Dictionary")
591 cmpCurrency.item["a"] := "{u+058f}" ; (֏) Armenian dram
592 cmpCurrency.item["A"] := "{u+20b3}" ; (₳) Argentine austral
593 cmpCurrency.item["b"] := "{u+20bf}" ; (₿) bitcoin
594 cmpCurrency.item["B"] := "{u+0e3f}" ; (฿) Thai baht
595 cmpCurrency.item["c"] := "{u+20a1}" ; (₡) Costa Rican colón
596 cmpCurrency.item["C"] := "{u+20b5}" ; (₵) Ghanaian cedi
597 cmpCurrency.item["d"] := "{u+20ab}" ; (₫) Vietnamese dong
598 cmpCurrency.item["D"] := "{u+20af}" ; (₯) Greek drachma
599 cmpCurrency.item["e"] := "{u+20ac}" ; (€) euro sign
600 cmpCurrency.item["E"] := "{u+20a0}" ; (₠) euro-currency sign
601 cmpCurrency.item["f"] := "{u+20a3}" ; (₣) French franc
602 cmpCurrency.item["F"] := "{u+20a3}" ; (₣) French franc
603 cmpCurrency.item["g"] := "{u+20b2}" ; (₲) Paraguayan guaraní
604 cmpCurrency.item["G"] := "{u+20be}" ; (₾) Georgian lari
605 cmpCurrency.item["h"] := "{u+20b4}" ; (₴) Ukrainian hryvnia
606 cmpCurrency.item["H"] := "{u+20b4}" ; (₴) Ukrainian hryvnia
607 cmpCurrency.item["i"] := "{u+20a4}" ; (₤) lira
608 cmpCurrency.item["I"] := "{u+20b6}" ; (₶) livre tournois
609 cmpCurrency.item["k"] := "{u+20ad}" ; (₭) Laotian kip
610 cmpCurrency.item["K"] := "{u+20ad}" ; (₭) Laotian kip
611 cmpCurrency.item["l"] := "{u+20ba}" ; (₺) Turkish lira
612 cmpCurrency.item["L"] := "{u+00a3}" ; (£) pound sign
613 cmpCurrency.item["m"] := "{u+20bc}" ; (₼) Azerbaijani manat
614 cmpCurrency.item["M"] := "{u+20a5}" ; (₥) mill sign
615 cmpCurrency.item["n"] := "{u+20a6}" ; (₦) Nigerian naira
616 cmpCurrency.item["N"] := "{u+20bb}" ; (₻) Nordic mark
617 cmpCurrency.item["o"] := "{u+00a2}" ; (¢) cent sign (dollar)
618 cmpCurrency.item["p"] := "{u+20b1}" ; (₱) Philippine peso
619 cmpCurrency.item["P"] := "{u+20a7}" ; (₧) Spanish pesetas
620 cmpCurrency.item["r"] := "{u+20b9}" ; (₹) Indian rupee
621 cmpCurrency.item["R"] := "{u+20bd}" ; (₽) Russian ruble
622 cmpCurrency.item["s"] := "{u+20aa}" ; (₪) Israeli new shekel
623 cmpCurrency.item["S"] := "{u+20b7}" ; (₷) spesmilo
624 cmpCurrency.item["t"] := "{u+20ae}" ; (₮) Mongolian tögrög (tugrik)
625 cmpCurrency.item["T"] := "{u+20b8}" ; (₸) Kazakh tenge
626 cmpCurrency.item["u"] := "{u+20a8}" ; (₨) rupee sign
627 cmpCurrency.item["U"] := "{u+20a2}" ; (₢) Brazilian cruzeiro
628 cmpCurrency.item["w"] := "{u+20a9}" ; (₩) South Korean won
629 cmpCurrency.item["W"] := "{u+20a9}" ; (₩) South Korean won
630 cmpCurrency.item["x"] := "{u+00a4}" ; (¤) currency sign
631 cmpCurrency.item["y"] := "{u+00a5}" ; (¥) yen sign
632 cmpCurrency.item["Y"] := "{u+00a5}" ; (¥) yen sign
633
634
635 ; Compose : Greek Alphabet (g)
636
637 cmpGreek := ComObjCreate("Scripting.Dictionary")
638 cmpGreek.item["a"] := "{u+03b1}" ; (α) Greek small alpha
639 cmpGreek.item["A"] := "{u+0391}" ; (Α) Greek capital alpha
640 cmpGreek.item["b"] := "{u+03b2}" ; (β) Greek small beta
641 cmpGreek.item["B"] := "{u+0392}" ; (Β) Greek capital beta
642 cmpGreek.item["v"] := "{u+03b2}" ; (β) Greek small beta
643 cmpGreek.item["V"] := "{u+0392}" ; (Β) Greek capital beta
644 cmpGreek.item["g"] := "{u+03b3}" ; (γ) Greek small gamma
645 cmpGreek.item["G"] := "{u+0393}" ; (Γ) Greek capital gamma
646 cmpGreek.item["d"] := "{u+03b4}" ; (δ) Greek small delta
647 cmpGreek.item["D"] := "{u+0394}" ; (Δ) Greek capital delta
648 cmpGreek.item["e"] := "{u+03b5}" ; (ε) Greek small epsilon
649 cmpGreek.item["E"] := "{u+0395}" ; (Ε) Greek capital epsilon
650 cmpGreek.item["z"] := "{u+03b6}" ; (ζ) Greek small zeta
651 cmpGreek.item["Z"] := "{u+0396}" ; (Ζ) Greek capital zeta
652 cmpGreek.item["h"] := "{u+03b7}" ; (η) Greek small eta
653 cmpGreek.item["H"] := "{u+0397}" ; (Η) Greek capital eta
654 cmpGreek.item["j"] := "{u+03b8}" ; (θ) Greek small theta
655 cmpGreek.item["J"] := "{u+0398}" ; (Θ) Greek capital theta
656 cmpGreek.item["i"] := "{u+03b9}" ; (ι) Greek small iota
657 cmpGreek.item["I"] := "{u+0399}" ; (Ι) Greek capital iota
658 cmpGreek.item["k"] := "{u+03ba}" ; (κ) Greek small kappa
659 cmpGreek.item["K"] := "{u+039a}" ; (Κ) Greek capital kappa
660 cmpGreek.item["l"] := "{u+03bb}" ; (λ) Greek small lambda
661 cmpGreek.item["L"] := "{u+039b}" ; (Λ) Greek capital lambda
662 cmpGreek.item["m"] := "{u+03bc}" ; (μ) Greek small mu
663 cmpGreek.item["M"] := "{u+039c}" ; (Μ) Greek capital mu
664 cmpGreek.item["n"] := "{u+03bd}" ; (ν) Greek small nu
665 cmpGreek.item["N"] := "{u+039d}" ; (Ν) Greek capital nu
666 cmpGreek.item["x"] := "{u+03be}" ; (ξ) Greek small xi
667 cmpGreek.item["X"] := "{u+039e}" ; (Ξ) Greek capital xi
668 cmpGreek.item["o"] := "{u+03bf}" ; (ο) Greek small omicron
669 cmpGreek.item["O"] := "{u+039f}" ; (Ο) Greek capital omicron
670 cmpGreek.item["p"] := "{u+03c0}" ; (π) Greek small pi
671 cmpGreek.item["P"] := "{u+03a0}" ; (Π) Greek capital pi
672 cmpGreek.item["r"] := "{u+03c1}" ; (ρ) Greek small rho
673 cmpGreek.item["R"] := "{u+03a1}" ; (Ρ) Greek capital rho
674 cmpGreek.item["s"] := "{u+03c3}" ; (σ) Greek small sigma
675 cmpGreek.item[","] := "{u+03c2}" ; (ς) Greek small final sigma
676 cmpGreek.item["S"] := "{u+03a3}" ; (Σ) Greek capital sigma
677 cmpGreek.item["t"] := "{u+03c4}" ; (τ) Greek small tau
678 cmpGreek.item["T"] := "{u+03a4}" ; (Τ) Greek capital tau
679 cmpGreek.item["u"] := "{u+03c5}" ; (υ) Greek small upsilon
680 cmpGreek.item["U"] := "{u+03a5}" ; (Υ) Greek capital upsilon
681 cmpGreek.item["y"] := "{u+03c5}" ; (υ) Greek small upsilon
682 cmpGreek.item["Y"] := "{u+03a5}" ; (Υ) Greek capital upsilon
683 cmpGreek.item["f"] := "{u+03c6}" ; (φ) Greek small phi
684 cmpGreek.item["F"] := "{u+03a6}" ; (Φ) Greek capital phi
685 cmpGreek.item["c"] := "{u+03c7}" ; (χ) Greek small chi
686 cmpGreek.item["C"] := "{u+03a7}" ; (Χ) Greek capital chi
687 cmpGreek.item["w"] := "{u+03c8}" ; (ψ) Greek small psi
688 cmpGreek.item["W"] := "{u+03a8}" ; (Ψ) Greek capital psi
689 cmpGreek.item["q"] := "{u+03c9}" ; (ω) Greek small omega
690 cmpGreek.item["Q"] := "{u+03a9}" ; (Ω) Greek capital omega
691
692
693 ; Compose : Superscript Characters (p)
694
695 cmpSuperscript := ComObjCreate("Scripting.Dictionary")
696 cmpSuperscript.item["1"] := "{u+00b9}" ; (¹) superscript 1
697 cmpSuperscript.item["2"] := "{u+00b2}" ; (²) superscript 2
698 cmpSuperscript.item["3"] := "{u+00b3}" ; (³) superscript 3
699 cmpSuperscript.item["4"] := "{u+2074}" ; (⁴) superscript 4
700 cmpSuperscript.item["5"] := "{u+2075}" ; (⁵) superscript 5
701 cmpSuperscript.item["6"] := "{u+2076}" ; (⁶) superscript 6
702 cmpSuperscript.item["7"] := "{u+2077}" ; (⁷) superscript 7
703 cmpSuperscript.item["8"] := "{u+2078}" ; (⁸) superscript 8
704 cmpSuperscript.item["9"] := "{u+2079}" ; (⁹) superscript 9
705 cmpSuperscript.item["0"] := "{u+2070}" ; (⁰) superscript 0
706 cmpSuperscript.item["i"] := "{u+2071}" ; (ⁱ) superscript i
707 cmpSuperscript.item["n"] := "{u+207f}" ; (ⁿ) superscript n
708 cmpSuperscript.item["+"] := "{u+207a}" ; (⁺) superscript +
709 cmpSuperscript.item["-"] := "{u+207b}" ; (⁻) superscript -
710 cmpSuperscript.item["="] := "{u+207c}" ; (⁼) superscript =
711 cmpSuperscript.item["("] := "{u+207d}" ; (⁽) superscript (
712 cmpSuperscript.item[")"] := "{u+207e}" ; (⁾) superscript )
713
714
715 ; Compose : Subscript Characters (u)
716
717 cmpSubscript := ComObjCreate("Scripting.Dictionary")
718 cmpSubscript.item["1"] := "{u+2081}" ; (₁) subscript 1
719 cmpSubscript.item["2"] := "{u+2082}" ; (₂) subscript 2
720 cmpSubscript.item["3"] := "{u+2083}" ; (₃) subscript 3
721 cmpSubscript.item["4"] := "{u+2084}" ; (₄) subscript 4
722 cmpSubscript.item["5"] := "{u+2085}" ; (₅) subscript 5
723 cmpSubscript.item["6"] := "{u+2086}" ; (₆) subscript 6
724 cmpSubscript.item["7"] := "{u+2087}" ; (₇) subscript 7
725 cmpSubscript.item["8"] := "{u+2088}" ; (₈) subscript 8
726 cmpSubscript.item["9"] := "{u+2089}" ; (₉) subscript 9
727 cmpSubscript.item["0"] := "{u+2080}" ; (₀) subscript 0
728 cmpSubscript.item["a"] := "{u+2090}" ; (ₐ) subscript a
729 cmpSubscript.item["b"] := "{u+1d66}" ; (ᵦ) subscript beta
730 cmpSubscript.item["c"] := "{u+1d6a}" ; (ᵪ) subscript chi
731 cmpSubscript.item["e"] := "{u+2091}" ; (ₑ) subscript e
732 cmpSubscript.item["E"] := "{u+2094}" ; (ₔ) subscript schwa
733 cmpSubscript.item["f"] := "{u+1d69}" ; (ᵩ) subscript phi
734 cmpSubscript.item["g"] := "{u+1d67}" ; (ᵧ) subscript gamma
735 cmpSubscript.item["h"] := "{u+2095}" ; (ₕ) subscript h
736 cmpSubscript.item["i"] := "{u+1d62}" ; (ᵢ) subscript i
737 cmpSubscript.item["j"] := "{u+2c7c}" ; (ⱼ) subscript j
738 cmpSubscript.item["k"] := "{u+2096}" ; (ₖ) subscript k
739 cmpSubscript.item["l"] := "{u+2097}" ; (ₗ) subscript l
740 cmpSubscript.item["m"] := "{u+2098}" ; (ₘ) subscript m
741 cmpSubscript.item["n"] := "{u+2099}" ; (ₙ) subscript n
742 cmpSubscript.item["o"] := "{u+2092}" ; (ₒ) subscript o
743 cmpSubscript.item["p"] := "{u+209a}" ; (ₚ) subscript p
744 cmpSubscript.item["r"] := "{u+1d63}" ; (ᵣ) subscript r
745 cmpSubscript.item["R"] := "{u+1d68}" ; (ᵨ) subscript rho
746 cmpSubscript.item["s"] := "{u+209b}" ; (ₛ) subscript s
747 cmpSubscript.item["t"] := "{u+209c}" ; (ₜ) subscript t
748 cmpSubscript.item["u"] := "{u+1d64}" ; (ᵤ) subscript u
749 cmpSubscript.item["v"] := "{u+1d65}" ; (ᵥ) subscript v
750 cmpSubscript.item["x"] := "{u+2093}" ; (ₓ) subscript x
751 cmpSubscript.item["+"] := "{u+208a}" ; (₊) subscript +
752 cmpSubscript.item["-"] := "{u+208b}" ; (₋) subscript -
753 cmpSubscript.item["="] := "{u+208c}" ; (₌) subscript =
754 cmpSubscript.item["("] := "{u+208d}" ; (₍) subscript (
755 cmpSubscript.item[")"] := "{u+208e}" ; (₎) subscript )
756
757
758 ; Compose : Spacing Characters and Dashes
759
760 cmpSpace := ComObjCreate("Scripting.Dictionary")
761 cmpQuad := ComObjCreate("Scripting.Dictionary")
762 cmpSpace.item["1"] := "{u+2004}" ; three-per-em space
763 cmpSpace.item["2"] := "{u+2002}" ; en space
764 cmpSpace.item["3"] := "{u+2003}" ; em space
765 cmpSpace.item["4"] := "{u+2005}" ; four-per-em space
766 cmpSpace.item["5"] := "{u+2008}" ; punctuation space
767 cmpSpace.item["6"] := "{u+2006}" ; six-per-em space
768 cmpSpace.item["7"] := "{u+2009}" ; thin space
769 cmpSpace.item["8"] := "{u+200a}" ; hair space
770 cmpSpace.item["9"] := "{u+2007}" ; figure space
771 cmpSpace.item["0"] := "{u+200b}" ; zero-width space (ZWSP)
772 cmpSpace.item["m"] := "{u+205f}" ; medium mathematical space (MMSP)
773 cmpSpace.item["n"] := "{u+202f}" ; narrow no-break space (NNBSP)
774 cmpSpace.item[" "] := "{u+00a0}" ; non-breaking space (NBSP)
775 cmpMacronStroke.item["2"] := "{u+2013}" ; (–) en dash
776 cmpMacronStroke.item["3"] := "{u+2014}" ; (—) em dash
777 cmpMacronStroke.item["4"] := "{u+2015}" ; (―) horizontal bar
778 cmpMacronStroke.item["5"] := "{u+2010}" ; (‐) hyphen
779 cmpMacronStroke.item["9"] := "{u+2012}" ; (‒) figure dash
780 cmpMacronStroke.item["0"] := "{u+00ad}" ; (­) soft hyphen (SHY)
781 cmpMacronStroke.item["-"] := "{u+2011}" ; (‑) non-breaking hyphen
782 cmpQuad.item["2"] := "{u+2000}" ; en quad
783 cmpQuad.item["3"] := "{u+2001}" ; em quad
784
785
786 ; Compose : Arrows and Pointing Triangles
787
788 cmpArrow := ComObjCreate("Scripting.Dictionary")
789 cmpArrow.item["w"] := "{u+25b2}" ; (▲) black up-pointing triangle
790 cmpArrow.item["a"] := "{u+25c0}" ; (◀) black left-pointing triangle
791 cmpArrow.item["s"] := "{u+25bc}" ; (▼) black down-pointing triangle
792 cmpArrow.item["d"] := "{u+25b6}" ; (▶) black right-pointing triangle
793 cmpArrow.item["i"] := "{u+25b3}" ; (△) white up-pointing triangle
794 cmpArrow.item["j"] := "{u+25c1}" ; (◁) white left-pointing triangle
795 cmpArrow.item["k"] := "{u+25bd}" ; (▽) white down-pointing triangle
796 cmpArrow.item["l"] := "{u+25b7}" ; (▷) white right-pointing triangle
797 cmpArrow.item["1"] := "{u+2199}" ; (↙) south west arrow
798 cmpArrow.item["2"] := "{u+2193}" ; (↓) downwards arrow
799 cmpArrow.item["3"] := "{u+2198}" ; (↘) south east arrow
800 cmpArrow.item["4"] := "{u+2190}" ; (←) leftwards arrow
801 cmpArrow.item["5"] := "{u+2195}" ; (↕) up down arrow
802 cmpArrow.item["6"] := "{u+2192}" ; (→) rightwards arrow
803 cmpArrow.item["7"] := "{u+2196}" ; (↖) north west arrow
804 cmpArrow.item["8"] := "{u+2191}" ; (↑) upwards arrow
805 cmpArrow.item["9"] := "{u+2197}" ; (↗) north east arrow
806 cmpArrow.item["0"] := "{u+2194}" ; (↔) left right arrow
807 cmpDoubleAcute.item["1"] := "{u+21d9}" ; (⇙) south west double arrow
808 cmpDoubleAcute.item["2"] := "{u+21d3}" ; (⇓) downwards double arrow
809 cmpDoubleAcute.item["3"] := "{u+21d8}" ; (⇘) south east double arrow
810 cmpDoubleAcute.item["4"] := "{u+21d0}" ; (⇐) leftwards double arrow
811 cmpDoubleAcute.item["5"] := "{u+21d5}" ; (⇕) up down double arrow
812 cmpDoubleAcute.item["6"] := "{u+21d2}" ; (⇒) rightwards double arrow
813 cmpDoubleAcute.item["7"] := "{u+21d6}" ; (⇖) north west double arrow
814 cmpDoubleAcute.item["8"] := "{u+21d1}" ; (⇑) upwards double arrow
815 cmpDoubleAcute.item["9"] := "{u+21d7}" ; (⇗) north east double arrow
816 cmpDoubleAcute.item["0"] := "{u+21d4}" ; (⇔) left right double arrow
817
818
819 ; Compose : Various Symbols (s)
820
821 cmpSymbols := ComObjCreate("Scripting.Dictionary")
822 cmpSymbols.item["a"] := "{u+2100}" ; (℀) account of
823 cmpSymbols.item["b"] := "{u+203d}" ; (‽) interrobang
824 cmpSymbols.item["B"] := "{u+2e18}" ; (⸘) inverted interrobang
825 cmpSymbols.item["c"] := "{u+2105}" ; (℅) care of
826 cmpSymbols.item["d"] := "{u+22c4}" ; (⋄) diamond operator
827 cmpSymbols.item["e"] := "{u+212e}" ; (℮) estimated symbol
828 cmpSymbols.item["f"] := "{u+2640}" ; (♀) female sign (Venus)
829 cmpSymbols.item["h"] := "{u+2302}" ; (⌂) house
830 cmpSymbols.item["H"] := "{u+2126}" ; (Ω) ohm sign (backwards compatibility)
831 cmpSymbols.item["i"] := "{u+2300}" ; (⌀) diameter sign
832 cmpSymbols.item["j"] := "{u+2101}" ; (℁) addressed to the subject
833 cmpSymbols.item["k"] := "{u+214d}" ; (⅍) aktieselskab
834 cmpSymbols.item["l"] := "{u+2113}" ; (ℓ) script small l
835 cmpSymbols.item["L"] := "{u+2112}" ; (ℒ) Laplace transform
836 cmpSymbols.item["m"] := "{u+2642}" ; (♂) male sign (Mars)
837 cmpSymbols.item["M"] := "{u+2120}" ; (℠) service mark
838 cmpSymbols.item["p"] := "{u+211e}" ; (℞) prescription take (Recipere)
839 cmpSymbols.item["P"] := "{u+211e}" ; (℞) prescription take (Recipere)
840 cmpSymbols.item["r"] := "{u+211f}" ; (℟) response (liturgy)
841 cmpSymbols.item["R"] := "{u+211f}" ; (℟) response (liturgy)
842 cmpSymbols.item["u"] := "{u+2106}" ; (℆) cada una (each one)
843 cmpSymbols.item["v"] := "{u+2123}" ; (℣) versicle (liturgy)
844 cmpSymbols.item["V"] := "{u+2123}" ; (℣) versicle (liturgy)
845 cmpSymbols.item["x"] := "{u+203b}" ; (※) reference mark
846 cmpSymbols.item["2"] := "{u+266b}" ; (♫) beamed eighth notes
847 cmpSymbols.item["3"] := "{u+2042}" ; (⁂) asterism
848 cmpSymbols.item["4"] := "{u+203b}" ; (※) reference mark
849 cmpSymbols.item["8"] := "{u+266a}" ; (♪) eighth note
850 cmpSymbols.item["!"] := "{u+203c}" ; (‼) double exclamation mark
851 cmpSymbols.item["?"] := "{u+2e2e}" ; (⸮) reversed question mark
852 cmpSymbols.item["/"] := "{u+205e}" ; (⁞) vertical four dots
853 cmpSymbols.item["|"] := "{u+00a6}" ; (¦) broken bar
854
855
856 ; Compose : Math Symbols (m)
857
858 cmpMathSymbols := ComObjCreate("Scripting.Dictionary")
859 cmpMathSymbols.item["a"] := "{u+2200}" ; (∀) for all
860 cmpMathSymbols.item["A"] := "{u+2200}" ; (∀) for all
861 cmpMathSymbols.item["b"] := "{u+2286}" ; (⊆) subset of or equal to
862 cmpMathSymbols.item["B"] := "{u+2287}" ; (⊇) superset of or equal to
863 cmpMathSymbols.item["c"] := "{u+221d}" ; (∝) proportional to
864 cmpMathSymbols.item["C"] := "{u+2102}" ; (ℂ) complex numbers
865 cmpMathSymbols.item["d"] := "{u+2206}" ; (∆) increment operator
866 cmpMathSymbols.item["D"] := "{u+2207}" ; (∇) nabla/del operator
867 cmpMathSymbols.item["e"] := "{u+2203}" ; (∃) there exists
868 cmpMathSymbols.item["E"] := "{u+2204}" ; (∄) there does not exist
869 cmpMathSymbols.item["f"] := "{u+0192}" ; (ƒ) f with hook
870 cmpMathSymbols.item["F"] := "{u+220e}" ; (∎) end of proof
871 cmpMathSymbols.item["g"] := "{u+2282}" ; (⊂) subset of
872 cmpMathSymbols.item["G"] := "{u+2284}" ; (⊄) not a subset of
873 cmpMathSymbols.item["h"] := "{u+2283}" ; (⊃) superset of
874 cmpMathSymbols.item["H"] := "{u+2285}" ; (⊅) not a superset of
875 cmpMathSymbols.item["I"] := "{u+2111}" ; (ℑ) imaginary numbers
876 cmpMathSymbols.item["j"] := "{u+2245}" ; (≅) congruent to
877 cmpMathSymbols.item["J"] := "{u+2247}" ; (≇) not congruent to
878 cmpMathSymbols.item["k"] := "{u+220b}" ; (∋) contains as member
879 cmpMathSymbols.item["K"] := "{u+220c}" ; (∌) does not contain as member
880 cmpMathSymbols.item["l"] := "{u+2225}" ; (∥) parallel to
881 cmpMathSymbols.item["L"] := "{u+2226}" ; (∦) not parallel to
882 cmpMathSymbols.item["m"] := "{u+2208}" ; (∈) element of
883 cmpMathSymbols.item["M"] := "{u+2209}" ; (∉) not an element of
884 cmpMathSymbols.item["n"] := "{u+00ac}" ; (¬) not sign
885 cmpMathSymbols.item["N"] := "{u+2115}" ; (ℕ) natural numbers
886 cmpMathSymbols.item["o"] := "{u+2218}" ; (∘) ring operator
887 cmpMathSymbols.item["O"] := "{u+2205}" ; (∅) empty set
888 cmpMathSymbols.item["p"] := "{u+2202}" ; (∂) partial differential
889 cmpMathSymbols.item["P"] := "{u+2119}" ; (ℙ) prime numbers
890 cmpMathSymbols.item["Q"] := "{u+211a}" ; (ℚ) rational numbers
891 cmpMathSymbols.item["R"] := "{u+211d}" ; (ℝ) real numbers
892 cmpMathSymbols.item["s"] := "{u+2229}" ; (∩) set intersection
893 cmpMathSymbols.item["S"] := "{u+222b}" ; (∫) integral symbol
894 cmpMathSymbols.item["t"] := "{u+2261}" ; (≡) identical to
895 cmpMathSymbols.item["T"] := "{u+2262}" ; (≢) not identical to
896 cmpMathSymbols.item["u"] := "{u+222a}" ; (∪) set union
897 cmpMathSymbols.item["U"] := "{u+2216}" ; (∖) set minus
898 cmpMathSymbols.item["w"] := "{u+2118}" ; (℘) Weierstrass elliptic function
899 cmpMathSymbols.item["z"] := "{u+21af}" ; (↯) downwards zigzag arrow
900 cmpMathSymbols.item["Z"] := "{u+2124}" ; (ℤ) whole numbers
901 cmpMathSymbols.item["2"] := "{u+2236}" ; (∶) ratio symbol
902 cmpMathSymbols.item["4"] := "{u+2237}" ; (∷) proportion sign
903 cmpMathSymbols.item["6"] := "{u+2220}" ; (∠) angle symbol
904 cmpMathSymbols.item["9"] := "{u+221f}" ; (∟) right angle
905 cmpMathSymbols.item["0"] := "{u+2221}" ; (∡) measured angle
906 cmpMathSymbols.item[","] := "{u+2219}" ; (∙) bullet operator
907 cmpMathSymbols.item["+"] := "{u+2295}" ; (⊕) circled plus
908 cmpMathSymbols.item["-"] := "{u+2296}" ; (⊖) circled minus
909 cmpMathSymbols.item["*"] := "{u+2297}" ; (⊗) circled times
910 cmpMathSymbols.item["/"] := "{u+2298}" ; (⊘) circled division slash
911 cmpMathSymbols.item["."] := "{u+2299}" ; (⊙) circled dot operator
912 cmpMathSymbols.item["="] := "{u+225d}" ; (≝) equal to by definition
913 cmpMathSymbols.item[";"] := "{u+2235}" ; (∵) because sign
914 cmpMathSymbols.item[":"] := "{u+2234}" ; (∴) therefore sign
915 cmpMathSymbols.item["&"] := "{u+2227}" ; (∧) logical and
916 cmpMathSymbols.item["|"] := "{u+2228}" ; (∨) logical or
917
918
919 ; Compose : Special Letters/Characters
920
921 cmpCapitalA := ComObjCreate("Scripting.Dictionary")
922 cmpSmallD := ComObjCreate("Scripting.Dictionary")
923 cmpCapitalD := ComObjCreate("Scripting.Dictionary")
924 cmpSmallI := ComObjCreate("Scripting.Dictionary")
925 cmpCapitalI := ComObjCreate("Scripting.Dictionary")
926 cmpSmallN := ComObjCreate("Scripting.Dictionary")
927 cmpCapitalN := ComObjCreate("Scripting.Dictionary")
928 cmpCapitalO := ComObjCreate("Scripting.Dictionary")
929 cmpCapitalS := ComObjCreate("Scripting.Dictionary")
930 cmpCapitalT := ComObjCreate("Scripting.Dictionary")
931 cmpArrow.item["e"] := "{u+00e6}" ; (æ) letter ae
932 cmpCapitalA.item["E"] := "{u+00c6}" ; (Æ) letter AE
933 cmpSmallD.item["h"] := "{u+00f0}" ; (ð) small letter eth
934 cmpCapitalD.item["H"] := "{u+00d0}" ; (Ð) capital letter eth
935 cmpSmallF.item["s"] := "{u+017f}" ; (ſ) small letter long s
936 cmpSmallI.item["j"] := "{u+0133}" ; (ij) ligature ij
937 cmpCapitalI.item["J"] := "{u+0132}" ; (IJ) ligature IJ
938 cmpSmallN.item["g"] := "{u+014b}" ; (ŋ) small letter eng(ma)
939 cmpCapitalN.item["G"] := "{u+014a}" ; (Ŋ) capital letter eng(ma)
940 cmpRingAbove.item["e"] := "{u+0153}" ; (œ) ligature oe
941 cmpCapitalO.item["E"] := "{u+0152}" ; (Œ) ligature OE
942 cmpSymbols.item["s"] := "{u+00df}" ; (ß) small sharp s (Eszett)
943 cmpCapitalS.item["S"] := "{u+1e9e}" ; (ẞ) capital sharp S (capital Eszett)
944 cmpSmallT.item["h"] := "{u+00fe}" ; (þ) small letter thorn
945 cmpCapitalT.item["H"] := "{u+00de}" ; (Þ) capital letter thorn
946
947
948 ; Compose : General/Math Symbols
949
950 cmpDigitEight := ComObjCreate("Scripting.Dictionary")
951 cmpCapitalP := ComObjCreate("Scripting.Dictionary")
952 cmpVerticalLine := ComObjCreate("Scripting.Dictionary")
953 cmpAsterisk := ComObjCreate("Scripting.Dictionary")
954 cmpExclam := ComObjCreate("Scripting.Dictionary")
955 cmpQuestion := ComObjCreate("Scripting.Dictionary")
956 cmpParenLeft := ComObjCreate("Scripting.Dictionary")
957 cmpPlus := ComObjCreate("Scripting.Dictionary")
958 cmpPercent := ComObjCreate("Scripting.Dictionary")
959 cmpLessThan := ComObjCreate("Scripting.Dictionary")
960 cmpGreaterThan := ComObjCreate("Scripting.Dictionary")
961 cmpSmallD.item["d"] := "{u+2020}" ; (†) dagger
962 cmpCapitalD.item["D"] := "{u+2021}" ; (‡) double dagger
963 cmpSmallI.item["i"] := "{u+221e}" ; (∞) infinity symbol
964 cmpDigitEight.item["8"] := "{u+221e}" ; (∞) infinity symbol
965 cmpMathSymbols.item["i"] := "{u+00b5}" ; (µ) micro sign
966 cmpSmallN.item["o"] := "{u+2116}" ; (№) numero sign
967 cmpCapitalN.item["o"] := "{u+2116}" ; (№) numero sign
968 cmpRingAbove.item["x"] := "{u+00a4}" ; (¤) currency sign
969 cmpSuperscript.item["p"] := "{u+00b6}" ; (¶) pilcrow sign
970 cmpCapitalP.item["P"] := "{u+00b6}" ; (¶) pilcrow sign
971 cmpSmallR.item["2"] := "{u+221a}" ; (√) square root
972 cmpSmallR.item["3"] := "{u+221b}" ; (∛) cube root
973 cmpSmallR.item["4"] := "{u+221c}" ; (∜) fourth root
974 cmpSymbols.item["o"] := "{u+00a7}" ; (§) section sign
975 cmpCapitalS.item["o"] := "{u+00a7}" ; (§) section sign
976 cmpSmallT.item["m"] := "{u+2122}" ; (™) trademark symbol
977 cmpVerticalLine.item["|"] := "{u+2016}" ; (‖) double vertical line
978 cmpAcuteAccent.item["1"] := "{u+2032}" ; (′) prime
979 cmpAcuteAccent.item["2"] := "{u+2033}" ; (″) double prime
980 cmpAcuteAccent.item["3"] := "{u+2034}" ; (‴) triple prime
981 cmpAcuteAccent.item["4"] := "{u+2057}" ; (⁗) quadruple prime
982 cmpAsterisk.item["*"] := "{u+00d7}" ; (×) multiplication sign
983 cmpStroke.item["/"] := "{u+00f7}" ; (÷) division sign
984 cmpAsterisk.item["o"] := "{u+00b0}" ; (°) degree sign
985 cmpRingAbove.item["*"] := "{u+00b0}" ; (°) degree sign
986 cmpDotAbove.item["-"] := "{u+00b7}" ; (·) middle dot
987 cmpDotAbove.item["3"] := "{u+2026}" ; (…) horizontal ellipsis
988 cmpDotAbove.item["."] := "{u+2026}" ; (…) horizontal ellipsis
989 cmpArrow.item["-"] := "{u+00aa}" ; (ª) feminine ordinal indicator (Spanish, Portuguese, Italian, Galician)
990 cmpRingAbove.item["-"] := "{u+00ba}" ; (º) masculine ordinal indicator (Spanish, Portuguese, Italian, Galician)
991 cmpExclam.item["!"] := "{u+00a1}" ; (¡) inverted exclamation mark
992 cmpQuestion.item["?"] := "{u+00bf}" ; (¿) inverted question mark
993 cmpRingAbove.item["c"] := "{u+00a9}" ; (©) copyright sign
994 cmpParenLeft.item["c"] := "{u+00a9}" ; (©) copyright sign
995 cmpRingAbove.item["p"] := "{u+2117}" ; (℗) sound recording copyright
996 cmpParenLeft.item["p"] := "{u+2117}" ; (℗) sound recording copyright
997 cmpRingAbove.item["r"] := "{u+00ae}" ; (®) registered sign
998 cmpParenLeft.item["r"] := "{u+00ae}" ; (®) registered sign
999 cmpPlus.item["-"] := "{u+00b1}" ; (±) plus-minus sign
1000 cmpMacronStroke.item["+"] := "{u+2213}" ; (∓) minus-or-plus sign
1001 cmpPercent.item["%"] := "{u+2030}" ; (‰) per mille sign
1002 cmpPercent.item["3"] := "{u+2030}" ; (‰) per mille sign
1003 cmpPercent.item["4"] := "{u+2031}" ; (‱) per ten thousand sign
1004 cmpExclam.item["="] := "{u+2260}" ; (≠) not equal to
1005 cmpLessThan.item[">"] := "{u+2260}" ; (≠) not equal to
1006 cmpLessThan.item["="] := "{u+2264}" ; (≤) less-than or equal to
1007 cmpGreaterThan.item["="] := "{u+2265}" ; (≥) greater-than or equal to
1008 cmpLessThan.item["+"] := "{u+2a7d}" ; (⩽) less-than or slanted equal to
1009 cmpGreaterThan.item["+"] := "{u+2a7e}" ; (⩾) greater-than or slanted equal to
1010 cmpTilde.item["~"] := "{u+2248}" ; (≈) almost equal to
1011
1012
1013 ; Compose : Bullets and Small Geometric Shapes (;)
1014
1015 cmpSemicolon := ComObjCreate("Scripting.Dictionary")
1016 cmpSemicolon.item["b"] := "{u+2022}" ; (•) bullet
1017 cmpSemicolon.item["o"] := "{u+25e6}" ; (◦) white bullet
1018 cmpSemicolon.item["h"] := "{u+2043}" ; (⁃) hyphen bullet
1019 cmpSemicolon.item["t"] := "{u+2023}" ; (‣) triangular bullet
1020 cmpSemicolon.item["q"] := "{u+25aa}" ; (▪) black small square
1021 cmpSemicolon.item["u"] := "{u+25ab}" ; (▫) white small square
1022 cmpSemicolon.item["w"] := "{u+25b4}" ; (▴) black up-pointing small triangle
1023 cmpSemicolon.item["a"] := "{u+25c2}" ; (◂) black left-pointing small triangle
1024 cmpSemicolon.item["s"] := "{u+25be}" ; (▾) black down-pointing small triangle
1025 cmpSemicolon.item["d"] := "{u+25b8}" ; (▸) black right-pointing small triangle
1026 cmpSemicolon.item["i"] := "{u+25b5}" ; (▵) white up-pointing small triangle
1027 cmpSemicolon.item["j"] := "{u+25c3}" ; (◃) white left-pointing small triangle
1028 cmpSemicolon.item["k"] := "{u+25bf}" ; (▿) white down-pointing small triangle
1029 cmpSemicolon.item["l"] := "{u+25b9}" ; (▹) white right-pointing small triangle
1030 cmpSemicolon.item["z"] := "{u+25a0}" ; (■) black square
1031 cmpSemicolon.item["x"] := "{u+25a1}" ; (□) white square
1032 cmpSemicolon.item["c"] := "{u+25c6}" ; (◆) black diamond
1033 cmpSemicolon.item["v"] := "{u+25c7}" ; (◇) white diamond
1034 cmpSemicolon.item[";"] := "{u+2022}" ; (•) bullet
1035
1036
1037 ; Compose : Vulgar Fractions
1038
1039 cmpDigitOne := ComObjCreate("Scripting.Dictionary")
1040 cmpDigitTwo := ComObjCreate("Scripting.Dictionary")
1041 cmpDigitThree := ComObjCreate("Scripting.Dictionary")
1042 cmpDigitFour := ComObjCreate("Scripting.Dictionary")
1043 cmpDigitFive := ComObjCreate("Scripting.Dictionary")
1044 cmpDigitSeven := ComObjCreate("Scripting.Dictionary")
1045 cmpDigitZero := ComObjCreate("Scripting.Dictionary")
1046 cmpDigitOne.item["2"] := "{u+00bd}" ; (½) vulgar fraction 1/2
1047 cmpDigitOne.item["3"] := "{u+2153}" ; (⅓) vulgar fraction 1/3
1048 cmpDigitTwo.item["3"] := "{u+2154}" ; (⅔) vulgar fraction 2/3
1049 cmpDigitOne.item["4"] := "{u+00bc}" ; (¼) vulgar fraction 1/4
1050 cmpDigitThree.item["4"] := "{u+00be}" ; (¾) vulgar fraction 3/4
1051 cmpDigitOne.item["5"] := "{u+2155}" ; (⅕) vulgar fraction 1/5
1052 cmpDigitTwo.item["5"] := "{u+2156}" ; (⅖) vulgar fraction 2/5
1053 cmpDigitThree.item["5"] := "{u+2157}" ; (⅗) vulgar fraction 3/5
1054 cmpDigitFour.item["5"] := "{u+2158}" ; (⅘) vulgar fraction 4/5
1055 cmpDigitOne.item["6"] := "{u+2159}" ; (⅙) vulgar fraction 1/6
1056 cmpDigitFive.item["6"] := "{u+215a}" ; (⅚) vulgar fraction 5/6
1057 cmpDigitOne.item["7"] := "{u+2150}" ; (⅐) vulgar fraction 1/7
1058 cmpDigitOne.item["8"] := "{u+215b}" ; (⅛) vulgar fraction 1/8
1059 cmpDigitThree.item["8"] := "{u+215c}" ; (⅜) vulgar fraction 3/8
1060 cmpDigitFive.item["8"] := "{u+215d}" ; (⅝) vulgar fraction 5/8
1061 cmpDigitSeven.item["8"] := "{u+215e}" ; (⅞) vulgar fraction 7/8
1062 cmpDigitOne.item["9"] := "{u+2151}" ; (⅑) vulgar fraction 1/9
1063 cmpDigitOne.item["0"] := "{u+2152}" ; (⅒) vulgar fraction 1/10
1064 cmpDigitZero.item["3"] := "{u+2189}" ; (↉) vulgar fraction 0/3
1065
1066
1067 ; Compose : Quotation Marks
1068
1069 cmpBracketLeft := ComObjCreate("Scripting.Dictionary")
1070 cmpBracketRight := ComObjCreate("Scripting.Dictionary")
1071 cmpBackslash := ComObjCreate("Scripting.Dictionary")
1072 cmpCedillaOgonek.item[chr(34)] := "{u+201e}" ; („) double low-9 quotation mark
1073 cmpDiaeresis.item[","] := "{u+201e}" ; („) double low-9 quotation mark
1074 cmpCedillaOgonek.item["'"] := "{u+201a}" ; (‚) single low-9 quotation mark
1075 cmpAcuteAccent.item[","] := "{u+201a}" ; (‚) single low-9 quotation mark
1076 cmpCedillaOgonek.item[","] := "{u+201a}" ; (‚) single low-9 quotation mark
1077 cmpDiaeresis.item["["] := "{u+201c}" ; (“) left double quotation mark
1078 cmpBracketLeft.item[chr(34)] := "{u+201c}" ; (“) left double quotation mark
1079 cmpDiaeresis.item["]"] := "{u+201d}" ; (”) right double quotation mark
1080 cmpBracketRight.item[chr(34)] := "{u+201d}" ; (”) right double quotation mark
1081 cmpAcuteAccent.item["["] := "{u+2018}" ; (‘) left single quotation mark
1082 cmpBracketLeft.item["'"] := "{u+2018}" ; (‘) left single quotation mark
1083 cmpAcuteAccent.item["]"] := "{u+2019}" ; (’) right single quotation mark
1084 cmpBracketRight.item["'"] := "{u+2019}" ; (’) right single quotation mark
1085 cmpBackslash.item[chr(34)] := "{u+201f}" ; (‟) double high-reversed-9 quotation mark
1086 cmpDiaeresis.item["\"] := "{u+201f}" ; (‟) double high-reversed-9 quotation mark
1087 cmpBackslash.item["'"] := "{u+201b}" ; (‛) single high-reversed-9 quotation mark
1088 cmpAcuteAccent.item["\"] := "{u+201b}" ; (‛) single high-reversed-9 quotation mark
1089 cmpLessThan.item["<"] := "{u+00ab}" ; («) left-pointing double angle quotation mark
1090 cmpLessThan.item[chr(34)] := "{u+00ab}" ; («) left-pointing double angle quotation mark
1091 cmpDiaeresis.item["<"] := "{u+00ab}" ; («) left-pointing double angle quotation mark
1092 cmpGreaterThan.item[">"] := "{u+00bb}" ; (») right-pointing double angle quotation mark
1093 cmpGreaterThan.item[chr(34)] := "{u+00bb}" ; (») right-pointing double angle quotation mark
1094 cmpDiaeresis.item[">"] := "{u+00bb}" ; (») right-pointing double angle quotation mark
1095 cmpLessThan.item["'"] := "{u+2039}" ; (‹) left-pointing single angle quotation mark
1096 cmpAcuteAccent.item["<"] := "{u+2039}" ; (‹) left-pointing single angle quotation mark
1097 cmpGreaterThan.item["'"] := "{u+203a}" ; (›) right-pointing single angle quotation mark
1098 cmpAcuteAccent.item[">"] := "{u+203a}" ; (›) right-pointing single angle quotation mark
1099
1100
1101 ; Compose : Double Grave Accent (G)
1102
1103 cmpCapitalG := ComObjCreate("Scripting.Dictionary")
1104 cmpCapitalG.item["a"] := "{u+0201}" ; (ȁ) a with double grave
1105 cmpCapitalG.item["A"] := "{u+0200}" ; (Ȁ) A with double grave
1106 cmpCapitalG.item["e"] := "{u+0205}" ; (ȅ) e with double grave
1107 cmpCapitalG.item["E"] := "{u+0204}" ; (Ȅ) E with double grave
1108 cmpCapitalG.item["i"] := "{u+0209}" ; (ȉ) i with double grave
1109 cmpCapitalG.item["I"] := "{u+0208}" ; (Ȉ) I with double grave
1110 cmpCapitalG.item["o"] := "{u+020d}" ; (ȍ) o with double grave
1111 cmpCapitalG.item["O"] := "{u+020c}" ; (Ȍ) O with double grave
1112 cmpCapitalG.item["r"] := "{u+0211}" ; (ȑ) r with double grave
1113 cmpCapitalG.item["R"] := "{u+0210}" ; (Ȑ) R with double grave
1114 cmpCapitalG.item["u"] := "{u+0215}" ; (ȕ) u with double grave
1115 cmpCapitalG.item["U"] := "{u+0214}" ; (Ȕ) U with double grave
1116
1117
1118 ; Compose : Inverted Breve (B)
1119
1120 cmpCapitalB := ComObjCreate("Scripting.Dictionary")
1121 cmpCapitalB.item["a"] := "{u+0203}" ; (ȃ) a with inverted breve
1122 cmpCapitalB.item["A"] := "{u+0202}" ; (Ȃ) A with inverted breve
1123 cmpCapitalB.item["e"] := "{u+0207}" ; (ȇ) e with inverted breve
1124 cmpCapitalB.item["E"] := "{u+0206}" ; (Ȇ) E with inverted breve
1125 cmpCapitalB.item["i"] := "{u+020b}" ; (ȋ) i with inverted breve
1126 cmpCapitalB.item["I"] := "{u+020a}" ; (Ȋ) I with inverted breve
1127 cmpCapitalB.item["o"] := "{u+020f}" ; (ȏ) o with inverted breve
1128 cmpCapitalB.item["O"] := "{u+020e}" ; (Ȏ) O with inverted breve
1129 cmpCapitalB.item["r"] := "{u+0213}" ; (ȓ) r with inverted breve
1130 cmpCapitalB.item["R"] := "{u+0212}" ; (Ȓ) R with inverted breve
1131 cmpCapitalB.item["u"] := "{u+0217}" ; (ȗ) u with inverted breve
1132 cmpCapitalB.item["U"] := "{u+0216}" ; (Ȗ) U with inverted breve
1133
1134
1135 ; Compose : Circumflex Below (I)
1136
1137 cmpCapitalI.item["d"] := "{u+1e13}" ; (ḓ) d with circumflex below
1138 cmpCapitalI.item["D"] := "{u+1e12}" ; (Ḓ) D with circumflex below
1139 cmpCapitalI.item["e"] := "{u+1e19}" ; (ḙ) e with circumflex below
1140 cmpCapitalI.item["E"] := "{u+1e18}" ; (Ḙ) E with circumflex below
1141 cmpCapitalI.item["l"] := "{u+1e3d}" ; (ḽ) l with circumflex below
1142 cmpCapitalI.item["L"] := "{u+1e3c}" ; (Ḽ) L with circumflex below
1143 cmpCapitalI.item["n"] := "{u+1e4b}" ; (ṋ) n with circumflex below
1144 cmpCapitalI.item["N"] := "{u+1e4a}" ; (Ṋ) N with circumflex below
1145 cmpCapitalI.item["t"] := "{u+1e71}" ; (ṱ) t with circumflex below
1146 cmpCapitalI.item["T"] := "{u+1e70}" ; (Ṱ) T with circumflex below
1147 cmpCapitalI.item["u"] := "{u+1e77}" ; (ṷ) u with circumflex below
1148 cmpCapitalI.item["U"] := "{u+1e76}" ; (Ṷ) U with circumflex below
1149
1150
1151 ; Compose : Tilde Below (T)
1152
1153 cmpCapitalT.item["e"] := "{u+1e1b}" ; (ḛ) e with tilde below
1154 cmpCapitalT.item["E"] := "{u+1e1a}" ; (Ḛ) E with tilde below
1155 cmpCapitalT.item["i"] := "{u+1e2d}" ; (ḭ) i with tilde below
1156 cmpCapitalT.item["I"] := "{u+1e2c}" ; (Ḭ) I with tilde below
1157 cmpCapitalT.item["u"] := "{u+1e75}" ; (ṵ) u with tilde below
1158 cmpCapitalT.item["U"] := "{u+1e74}" ; (Ṵ) U with tilde below
1159
1160
1161 ; Compose : Line Below (L)
1162
1163 cmpCapitalL := ComObjCreate("Scripting.Dictionary")
1164 cmpCapitalL.item["b"] := "{u+1e07}" ; (ḇ) b with line below
1165 cmpCapitalL.item["B"] := "{u+1e06}" ; (Ḇ) B with line below
1166 cmpCapitalL.item["d"] := "{u+1e0f}" ; (ḏ) d with line below
1167 cmpCapitalL.item["D"] := "{u+1e0e}" ; (Ḏ) D with line below
1168 cmpCapitalL.item["h"] := "{u+1e96}" ; (ẖ) h with line below
1169 cmpCapitalL.item["k"] := "{u+1e35}" ; (ḵ) k with line below
1170 cmpCapitalL.item["K"] := "{u+1e34}" ; (Ḵ) K with line below
1171 cmpCapitalL.item["l"] := "{u+1e3b}" ; (ḻ) l with line below
1172 cmpCapitalL.item["L"] := "{u+1e3a}" ; (Ḻ) L with line below
1173 cmpCapitalL.item["n"] := "{u+1e49}" ; (ṉ) n with line below
1174 cmpCapitalL.item["N"] := "{u+1e48}" ; (Ṉ) N with line below
1175 cmpCapitalL.item["r"] := "{u+1e5f}" ; (ṟ) r with line below
1176 cmpCapitalL.item["R"] := "{u+1e5e}" ; (Ṟ) R with line below
1177 cmpCapitalL.item["t"] := "{u+1e6f}" ; (ṯ) t with line below
1178 cmpCapitalL.item["T"] := "{u+1e6e}" ; (Ṯ) T with line below
1179 cmpCapitalL.item["z"] := "{u+1e95}" ; (ẕ) z with line below
1180 cmpCapitalL.item["Z"] := "{u+1e94}" ; (Ẕ) Z with line below
1181
1182
1183 ; Compose : Ring Below, Breve Below and Diaeresis Below (R)
1184
1185 cmpCapitalR := ComObjCreate("Scripting.Dictionary")
1186 cmpCapitalR.item["a"] := "{u+1e01}" ; (ḁ) a with ring below
1187 cmpCapitalR.item["A"] := "{u+1e00}" ; (Ḁ) A with ring below
1188 cmpCapitalR.item["h"] := "{u+1e2b}" ; (ḫ) h with breve below
1189 cmpCapitalR.item["H"] := "{u+1e2a}" ; (Ḫ) H with breve below
1190 cmpCapitalR.item["u"] := "{u+1e73}" ; (ṳ) u with diaeresis below
1191 cmpCapitalR.item["U"] := "{u+1e72}" ; (Ṳ) U with diaeresis below
1192
1193
1194 ; Compose : Hook Above (<)
1195
1196 cmpLessThan.item["a"] := "{u+1ea3}" ; (ả) a with hook above
1197 cmpLessThan.item["A"] := "{u+1ea2}" ; (Ả) A with hook above
1198 cmpLessThan.item["e"] := "{u+1ebb}" ; (ẻ) e with hook above
1199 cmpLessThan.item["E"] := "{u+1eba}" ; (Ẻ) E with hook above
1200 cmpLessThan.item["i"] := "{u+1ec9}" ; (ỉ) i with hook above
1201 cmpLessThan.item["I"] := "{u+1ec8}" ; (Ỉ) I with hook above
1202 cmpLessThan.item["o"] := "{u+1ecf}" ; (ỏ) o with hook above
1203 cmpLessThan.item["O"] := "{u+1ece}" ; (Ỏ) O with hook above
1204 cmpLessThan.item["u"] := "{u+1ee7}" ; (ủ) u with hook above
1205 cmpLessThan.item["U"] := "{u+1ee6}" ; (Ủ) U with hook above
1206 cmpLessThan.item["y"] := "{u+1ef7}" ; (ỷ) y with hook above
1207 cmpLessThan.item["Y"] := "{u+1ef6}" ; (Ỷ) Y with hook above
1208
1209
1210 ; Compose : Dot Below (>)
1211
1212 cmpGreaterThan.item["a"] := "{u+1ea1}" ; (ạ) a with dot below
1213 cmpGreaterThan.item["A"] := "{u+1ea0}" ; (Ạ) A with dot below
1214 cmpGreaterThan.item["b"] := "{u+1e05}" ; (ḅ) b with dot below
1215 cmpGreaterThan.item["B"] := "{u+1e04}" ; (Ḅ) B with dot below
1216 cmpGreaterThan.item["d"] := "{u+1e0d}" ; (ḍ) d with dot below
1217 cmpGreaterThan.item["D"] := "{u+1e0c}" ; (Ḍ) D with dot below
1218 cmpGreaterThan.item["e"] := "{u+1eb9}" ; (ẹ) e with dot below
1219 cmpGreaterThan.item["E"] := "{u+1eb8}" ; (Ẹ) E with dot below
1220 cmpGreaterThan.item["h"] := "{u+1e25}" ; (ḥ) h with dot below
1221 cmpGreaterThan.item["H"] := "{u+1e24}" ; (Ḥ) H with dot below
1222 cmpGreaterThan.item["i"] := "{u+1ecb}" ; (ị) i with dot below
1223 cmpGreaterThan.item["I"] := "{u+1eca}" ; (Ị) I with dot below
1224 cmpGreaterThan.item["k"] := "{u+1e33}" ; (ḳ) k with dot below
1225 cmpGreaterThan.item["K"] := "{u+1e32}" ; (Ḳ) K with dot below
1226 cmpGreaterThan.item["l"] := "{u+1e37}" ; (ḷ) l with dot below
1227 cmpGreaterThan.item["L"] := "{u+1e36}" ; (Ḷ) L with dot below
1228 cmpGreaterThan.item["m"] := "{u+1e43}" ; (ṃ) m with dot below
1229 cmpGreaterThan.item["M"] := "{u+1e42}" ; (Ṃ) M with dot below
1230 cmpGreaterThan.item["n"] := "{u+1e47}" ; (ṇ) n with dot below
1231 cmpGreaterThan.item["N"] := "{u+1e46}" ; (Ṇ) N with dot below
1232 cmpGreaterThan.item["o"] := "{u+1ecd}" ; (ọ) o with dot below
1233 cmpGreaterThan.item["O"] := "{u+1ecc}" ; (Ọ) O with dot below
1234 cmpGreaterThan.item["r"] := "{u+1e5b}" ; (ṛ) r with dot below
1235 cmpGreaterThan.item["R"] := "{u+1e5a}" ; (Ṛ) R with dot below
1236 cmpGreaterThan.item["s"] := "{u+1e63}" ; (ṣ) s with dot below
1237 cmpGreaterThan.item["S"] := "{u+1e62}" ; (Ṣ) S with dot below
1238 cmpGreaterThan.item["t"] := "{u+1e6d}" ; (ṭ) t with dot below
1239 cmpGreaterThan.item["T"] := "{u+1e6c}" ; (Ṭ) T with dot below
1240 cmpGreaterThan.item["u"] := "{u+1ee5}" ; (ụ) u with dot below
1241 cmpGreaterThan.item["U"] := "{u+1ee4}" ; (Ụ) U with dot below
1242 cmpGreaterThan.item["v"] := "{u+1e7f}" ; (ṿ) v with dot below
1243 cmpGreaterThan.item["V"] := "{u+1e7e}" ; (Ṿ) V with dot below
1244 cmpGreaterThan.item["w"] := "{u+1e89}" ; (ẉ) w with dot below
1245 cmpGreaterThan.item["W"] := "{u+1e88}" ; (Ẉ) W with dot below
1246 cmpGreaterThan.item["y"] := "{u+1ef5}" ; (ỵ) y with dot below
1247 cmpGreaterThan.item["Y"] := "{u+1ef4}" ; (Ỵ) Y with dot below
1248 cmpGreaterThan.item["z"] := "{u+1e93}" ; (ẓ) z with dot below
1249 cmpGreaterThan.item["Z"] := "{u+1e92}" ; (Ẓ) Z with dot below
1250
1251
1252 ; Compose : Miscellaneous Symbols and Dingbats
1253
1254 cmpDigitSix := ComObjCreate("Scripting.Dictionary")
1255
1256 cmpDigitOne.item["a"] := "{u+2600}" ; (☀) black sun with rays
1257 cmpDigitOne.item["b"] := "{u+2601}" ; (☁) cloud
1258 cmpDigitOne.item["c"] := "{u+2602}" ; (☂) umbrella
1259 cmpDigitOne.item["d"] := "{u+2603}" ; (☃) snowman
1260 cmpDigitOne.item["e"] := "{u+2604}" ; (☄) comet
1261 cmpDigitOne.item["f"] := "{u+2605}" ; (★) black star
1262 cmpDigitOne.item["g"] := "{u+2606}" ; (☆) white star
1263 cmpDigitOne.item["h"] := "{u+260e}" ; (☎) black telephone
1264 cmpDigitOne.item["i"] := "{u+260f}" ; (☏) white telephone
1265 cmpDigitOne.item["j"] := "{u+2610}" ; (☐) ballot box
1266 cmpDigitOne.item["k"] := "{u+2611}" ; (☑) ballot box with check
1267 cmpDigitOne.item["l"] := "{u+2612}" ; (☒) ballot box with x
1268 cmpDigitOne.item["m"] := "{u+2619}" ; (☙) reversed rotated floral heart bullet
1269 cmpDigitOne.item["n"] := "{u+261a}" ; (☚) black left-pointing index
1270 cmpDigitOne.item["o"] := "{u+261b}" ; (☛) black right-pointing index
1271 cmpDigitOne.item["p"] := "{u+261c}" ; (☜) white left-pointing index
1272 cmpDigitOne.item["q"] := "{u+261d}" ; (☝) white up-pointing index
1273 cmpDigitOne.item["r"] := "{u+261e}" ; (☞) white right-pointing index
1274 cmpDigitOne.item["s"] := "{u+261f}" ; (☟) white down-pointing index
1275 cmpDigitOne.item["t"] := "{u+2620}" ; (☠) skull and crossbones
1276 cmpDigitOne.item["u"] := "{u+2621}" ; (☡) caution sign
1277 cmpDigitOne.item["v"] := "{u+2622}" ; (☢) radioactive sign
1278 cmpDigitOne.item["w"] := "{u+2623}" ; (☣) biohazard sign
1279 cmpDigitOne.item["x"] := "{u+2639}" ; (☹) white frowning face
1280 cmpDigitOne.item["y"] := "{u+263a}" ; (☺) white smiling face
1281 cmpDigitOne.item["z"] := "{u+263b}" ; (☻) black smiling face
1282
1283 cmpDigitTwo.item["a"] := "{u+263c}" ; (☼) white sun with rays
1284 cmpDigitTwo.item["b"] := "{u+263d}" ; (☽) first quarter moon
1285 cmpDigitTwo.item["c"] := "{u+263e}" ; (☾) last quarter moon
1286 cmpDigitTwo.item["d"] := "{u+2640}" ; (♀) female sign (Venus)
1287 cmpDigitTwo.item["e"] := "{u+2642}" ; (♂) male sign (Mars)
1288 cmpDigitTwo.item["f"] := "{u+2668}" ; (♨) hot springs
1289 cmpDigitTwo.item["g"] := "{u+2669}" ; (♩) quarter note
1290 cmpDigitTwo.item["h"] := "{u+266a}" ; (♪) eighth note
1291 cmpDigitTwo.item["i"] := "{u+266b}" ; (♫) beamed eighth notes
1292 cmpDigitTwo.item["j"] := "{u+266c}" ; (♬) beamed sixteenth notes
1293 cmpDigitTwo.item["k"] := "{u+266d}" ; (♭) music flat sign
1294 cmpDigitTwo.item["l"] := "{u+266e}" ; (♮) music natural sign
1295 cmpDigitTwo.item["m"] := "{u+266f}" ; (♯) music sharp sign
1296 cmpDigitTwo.item["n"] := "{u+2672}" ; (♲) universal recycling symbol
1297 cmpDigitTwo.item["o"] := "{u+267a}" ; (♺) recycling symbol for generic materials
1298 cmpDigitTwo.item["p"] := "{u+267b}" ; (♻) black universal recycling symbol
1299 cmpDigitTwo.item["q"] := "{u+267f}" ; (♿) wheelchair symbol
1300 cmpDigitTwo.item["r"] := "{u+2690}" ; (⚐) white flag
1301 cmpDigitTwo.item["s"] := "{u+2691}" ; (⚑) black flag
1302 cmpDigitTwo.item["t"] := "{u+26a0}" ; (⚠) warning sign
1303 cmpDigitTwo.item["u"] := "{u+26a1}" ; (⚡) high voltage sign
1304 cmpDigitTwo.item["v"] := "{u+26d4}" ; (⛔) no entry
1305 cmpDigitTwo.item["w"] := "{u+231a}" ; (⌚) watch
1306 cmpDigitTwo.item["x"] := "{u+231b}" ; (⌛) hourglass
1307
1308 cmpDigitThree.item["a"] := "{u+2701}" ; (✁) upper blade scissors
1309 cmpDigitThree.item["b"] := "{u+2702}" ; (✂) black scissors
1310 cmpDigitThree.item["c"] := "{u+2703}" ; (✃) lower blade scissors
1311 cmpDigitThree.item["d"] := "{u+2704}" ; (✄) white scissors
1312 cmpDigitThree.item["e"] := "{u+2706}" ; (✆) telephone location sign
1313 cmpDigitThree.item["f"] := "{u+2707}" ; (✇) tape drive
1314 cmpDigitThree.item["g"] := "{u+2708}" ; (✈) airplane
1315 cmpDigitThree.item["h"] := "{u+2709}" ; (✉) envelope
1316 cmpDigitThree.item["i"] := "{u+270a}" ; (✊) raised fist
1317 cmpDigitThree.item["j"] := "{u+270b}" ; (✋) raised hand
1318 cmpDigitThree.item["k"] := "{u+270c}" ; (✌) victory hand
1319 cmpDigitThree.item["l"] := "{u+270d}" ; (✍) writing hand
1320 cmpDigitThree.item["m"] := "{u+270e}" ; (✎) lower right pencil
1321 cmpDigitThree.item["n"] := "{u+270f}" ; (✏) pencil
1322 cmpDigitThree.item["o"] := "{u+2710}" ; (✐) upper right pencil
1323 cmpDigitThree.item["p"] := "{u+2711}" ; (✑) white nib
1324 cmpDigitThree.item["q"] := "{u+2712}" ; (✒) black nib
1325 cmpDigitThree.item["r"] := "{u+2713}" ; (✓) check mark
1326 cmpDigitThree.item["s"] := "{u+2714}" ; (✔) heavy check mark
1327 cmpDigitThree.item["t"] := "{u+2715}" ; (✕) multiplication x
1328 cmpDigitThree.item["u"] := "{u+2716}" ; (✖) heavy multiplication x
1329 cmpDigitThree.item["v"] := "{u+2717}" ; (✗) ballot x
1330 cmpDigitThree.item["w"] := "{u+2718}" ; (✘) heavy ballot x
1331 cmpDigitThree.item["x"] := "{u+2719}" ; (✙) outlined Greek cross
1332 cmpDigitThree.item["y"] := "{u+271a}" ; (✚) heavy Greek cross
1333 cmpDigitThree.item["z"] := "{u+271b}" ; (✛) open centre cross
1334
1335 cmpDigitFour.item["a"] := "{u+271c}" ; (✜) heavy open centre cross
1336 cmpDigitFour.item["b"] := "{u+271d}" ; (✝) Latin cross
1337 cmpDigitFour.item["c"] := "{u+271e}" ; (✞) shadowed white Latin cross
1338 cmpDigitFour.item["d"] := "{u+271f}" ; (✟) outlined Latin cross
1339 cmpDigitFour.item["e"] := "{u+2720}" ; (✠) Maltese cross
1340 cmpDigitFour.item["f"] := "{u+2721}" ; (✡) star of David
1341 cmpDigitFour.item["g"] := "{u+2722}" ; (✢) four teardrop-spoked asterisk
1342 cmpDigitFour.item["h"] := "{u+2723}" ; (✣) four balloon-spoked asterisk
1343 cmpDigitFour.item["i"] := "{u+2724}" ; (✤) heavy four balloon-spoked asterisk
1344 cmpDigitFour.item["j"] := "{u+2725}" ; (✥) four club-spoked asterisk
1345 cmpDigitFour.item["k"] := "{u+2726}" ; (✦) black four-pointed star
1346 cmpDigitFour.item["l"] := "{u+2727}" ; (✧) white four-pointed star
1347 cmpDigitFour.item["m"] := "{u+2729}" ; (✩) stress outlined white star
1348 cmpDigitFour.item["n"] := "{u+272a}" ; (✪) circled white star
1349 cmpDigitFour.item["o"] := "{u+272b}" ; (✫) open centre black star
1350 cmpDigitFour.item["p"] := "{u+272c}" ; (✬) black centre white star
1351 cmpDigitFour.item["q"] := "{u+272d}" ; (✭) outlined black star
1352 cmpDigitFour.item["r"] := "{u+272e}" ; (✮) heavy outlined black star
1353 cmpDigitFour.item["s"] := "{u+272f}" ; (✯) pinwheel star
1354 cmpDigitFour.item["t"] := "{u+2730}" ; (✰) shadowed white star
1355 cmpDigitFour.item["u"] := "{u+2731}" ; (✱) heavy asterisk
1356 cmpDigitFour.item["v"] := "{u+2732}" ; (✲) open centre asterisk
1357 cmpDigitFour.item["w"] := "{u+2733}" ; (✳) eight-spoked asterisk
1358 cmpDigitFour.item["x"] := "{u+2734}" ; (✴) eight-pointed black star
1359 cmpDigitFour.item["y"] := "{u+2735}" ; (✵) eight-pointed pinwheel star
1360 cmpDigitFour.item["z"] := "{u+2736}" ; (✶) six-pointed black star
1361
1362 cmpDigitFive.item["a"] := "{u+2737}" ; (✷) eight-pointed rectilinear black star
1363 cmpDigitFive.item["b"] := "{u+2738}" ; (✸) heavy eight-pointed rectilinear black star
1364 cmpDigitFive.item["c"] := "{u+2739}" ; (✹) twelve pointed black star
1365 cmpDigitFive.item["d"] := "{u+273a}" ; (✺) sixteen-pointed asterisk
1366 cmpDigitFive.item["e"] := "{u+273b}" ; (✻) teardrop-spoked asterisk
1367 cmpDigitFive.item["f"] := "{u+273c}" ; (✼) open centre teardrop-spoked asterisk
1368 cmpDigitFive.item["g"] := "{u+273d}" ; (✽) heavy teardrop-spoked asterisk
1369 cmpDigitFive.item["h"] := "{u+273e}" ; (✾) six-petalled black and white florette
1370 cmpDigitFive.item["i"] := "{u+273f}" ; (✿) black florette
1371 cmpDigitFive.item["j"] := "{u+2740}" ; (❀) white florette
1372 cmpDigitFive.item["k"] := "{u+2741}" ; (❁) eight-petalled outlined black florette
1373 cmpDigitFive.item["l"] := "{u+2742}" ; (❂) circled open centre eight-pointed star
1374 cmpDigitFive.item["m"] := "{u+2743}" ; (❃) heavy teardrop-spoked pinwheel asterisk
1375 cmpDigitFive.item["n"] := "{u+2744}" ; (❄) snowflake
1376 cmpDigitFive.item["o"] := "{u+2745}" ; (❅) tight trifoliate snowflake
1377 cmpDigitFive.item["p"] := "{u+2746}" ; (❆) heavy chevron snowflake
1378 cmpDigitFive.item["q"] := "{u+2747}" ; (❇) sparkle
1379 cmpDigitFive.item["r"] := "{u+2748}" ; (❈) heavy sparkle
1380 cmpDigitFive.item["s"] := "{u+2749}" ; (❉) balloon-spoked asterisk
1381 cmpDigitFive.item["t"] := "{u+274a}" ; (❊) eight teardrop-spoked propeller asterisk
1382 cmpDigitFive.item["u"] := "{u+274b}" ; (❋) heavy eight teardrop-spoked propeller asterisk
1383 cmpDigitFive.item["v"] := "{u+274d}" ; (❍) shadowed white circle
1384 cmpDigitFive.item["w"] := "{u+274f}" ; (❏) lower right drop-shadowed white square
1385 cmpDigitFive.item["x"] := "{u+2750}" ; (❐) upper right drop-shadowed white square
1386 cmpDigitFive.item["y"] := "{u+2751}" ; (❑) lower right shadowed white square
1387 cmpDigitFive.item["z"] := "{u+2752}" ; (❒) upper right shadowed white square
1388
1389 cmpDigitSix.item["a"] := "{u+2756}" ; (❖) black diamond minus white x
1390 cmpDigitSix.item["b"] := "{u+2758}" ; (❘) light vertical bar
1391 cmpDigitSix.item["c"] := "{u+2759}" ; (❙) medium vertical bar
1392 cmpDigitSix.item["d"] := "{u+275a}" ; (❚) heavy vertical bar
1393 cmpDigitSix.item["e"] := "{u+275b}" ; (❛) heavy single turned comma quotation mark ornament
1394 cmpDigitSix.item["f"] := "{u+275c}" ; (❜) heavy single comma quotation mark ornament
1395 cmpDigitSix.item["g"] := "{u+275d}" ; (❝) heavy double turned comma quotation mark ornament
1396 cmpDigitSix.item["h"] := "{u+275e}" ; (❞) heavy double comma quotation mark ornament
1397 cmpDigitSix.item["i"] := "{u+275f}" ; (❟) heavy low single comma quotation mark ornament
1398 cmpDigitSix.item["j"] := "{u+2760}" ; (❠) heavy low double comma quotation mark ornament
1399 cmpDigitSix.item["k"] := "{u+2761}" ; (❡) curved stem paragraph sign ornament
1400 cmpDigitSix.item["l"] := "{u+2762}" ; (❢) heavy exclamation mark ornament
1401 cmpDigitSix.item["m"] := "{u+2763}" ; (❣) heavy heart exclamation mark ornament
1402 cmpDigitSix.item["n"] := "{u+2764}" ; (❤) heavy black heart
1403 cmpDigitSix.item["o"] := "{u+2765}" ; (❥) rotated heavy black heart bullet
1404 cmpDigitSix.item["p"] := "{u+2766}" ; (❦) floral heart
1405 cmpDigitSix.item["q"] := "{u+2767}" ; (❧) rotated floral heart bullet
1406
1407 cmpDigitSeven.item["a"] := "{u+2794}" ; (➔) heavy wide-headed rightwards arrow
1408 cmpDigitSeven.item["b"] := "{u+2798}" ; (➘) heavy south east arrow
1409 cmpDigitSeven.item["c"] := "{u+2799}" ; (➙) heavy rightwards arrow
1410 cmpDigitSeven.item["d"] := "{u+279a}" ; (➚) heavy north east arrow
1411 cmpDigitSeven.item["e"] := "{u+279b}" ; (➛) drafting point rightwards arrow
1412 cmpDigitSeven.item["f"] := "{u+279c}" ; (➜) heavy round-tipped rightwards arrow
1413 cmpDigitSeven.item["g"] := "{u+279d}" ; (➝) triangle-headed rightwards arrow
1414 cmpDigitSeven.item["h"] := "{u+279e}" ; (➞) heavy triangle-headed rightwards arrow
1415 cmpDigitSeven.item["i"] := "{u+279f}" ; (➟) dashed triangle-headed rightwards arrow
1416 cmpDigitSeven.item["j"] := "{u+27a0}" ; (➠) heavy dashed triangle-headed rightwards arrow
1417 cmpDigitSeven.item["k"] := "{u+27a1}" ; (➡) black rightwards arrow
1418 cmpDigitSeven.item["l"] := "{u+27a2}" ; (➢) 3d top-lighted rightwards arrowhead
1419 cmpDigitSeven.item["m"] := "{u+27a3}" ; (➣) 3d bottom-lighted rightwards arrowhead
1420 cmpDigitSeven.item["n"] := "{u+27a4}" ; (➤) black rightwards arrowhead
1421 cmpDigitSeven.item["o"] := "{u+27a5}" ; (➥) heavy black curved downwards and rightwards arrow
1422 cmpDigitSeven.item["p"] := "{u+27a6}" ; (➦) heavy black curved upwards and rightwards arrow
1423 cmpDigitSeven.item["q"] := "{u+27a7}" ; (➧) squat black rightwards arrow
1424 cmpDigitSeven.item["r"] := "{u+27a8}" ; (➨) heavy concave-pointed black rightwards arrow
1425 cmpDigitSeven.item["s"] := "{u+27a9}" ; (➩) right-shaded white rightwards arrow
1426 cmpDigitSeven.item["t"] := "{u+27aa}" ; (➪) left-shaded white rightwards arrow
1427 cmpDigitSeven.item["u"] := "{u+27ab}" ; (➫) back-tilted shadowed white rightwards arrow
1428 cmpDigitSeven.item["v"] := "{u+27ac}" ; (➬) front-tilted shadowed white rightwards arrow
1429 cmpDigitSeven.item["w"] := "{u+27ad}" ; (➭) heavy lower right-shadowed white rightwards arrow
1430 cmpDigitSeven.item["x"] := "{u+27ae}" ; (➮) heavy upper right-shadowed white rightwards arrow
1431 cmpDigitSeven.item["y"] := "{u+27af}" ; (➯) notched lower right-shadowed white rightwards arrow
1432 cmpDigitSeven.item["z"] := "{u+27b1}" ; (➱) notched upper right-shadowed white rightwards arrow
1433
1434 cmpDigitEight.item["a"] := "{u+27b2}" ; (➲) circled heavy white rightwards arrow
1435 cmpDigitEight.item["b"] := "{u+27b3}" ; (➳) white-feathered rightwards arrow
1436 cmpDigitEight.item["c"] := "{u+27b4}" ; (➴) black-feathered south east arrow
1437 cmpDigitEight.item["d"] := "{u+27b5}" ; (➵) black-feathered rightwards arrow
1438 cmpDigitEight.item["e"] := "{u+27b6}" ; (➶) black-feathered north east arrow
1439 cmpDigitEight.item["f"] := "{u+27b7}" ; (➷) heavy black-feathered south east arrow
1440 cmpDigitEight.item["g"] := "{u+27b8}" ; (➸) heavy black-feathered rightwards arrow
1441 cmpDigitEight.item["h"] := "{u+27b9}" ; (➹) heavy black-feathered north east arrow
1442 cmpDigitEight.item["i"] := "{u+27ba}" ; (➺) teardrop-barbed rightwards arrow
1443 cmpDigitEight.item["j"] := "{u+27bb}" ; (➻) heavy teardrop-shanked rightwards arrow
1444 cmpDigitEight.item["k"] := "{u+27bc}" ; (➼) wedge-tailed rightwards arrow
1445 cmpDigitEight.item["l"] := "{u+27bd}" ; (➽) heavy wedge-tailed rightwards arrow
1446 cmpDigitEight.item["m"] := "{u+27be}" ; (➾) open-outlined rightwards arrow
1447 cmpDigitEight.item["n"] := "{u+27c1}" ; (⟁) white triangle containing small white triangle
1448
1449
1450 ; Compose : Chess Pieces and Playing Card Suit Symbols (C)
1451
1452 cmpCapitalC := ComObjCreate("Scripting.Dictionary")
1453 cmpCapitalC.item["k"] := "{u+2654}" ; (♔) white chess king
1454 cmpCapitalC.item["q"] := "{u+2655}" ; (♕) white chess queen
1455 cmpCapitalC.item["r"] := "{u+2656}" ; (♖) white chess rook
1456 cmpCapitalC.item["b"] := "{u+2657}" ; (♗) white chess bishop
1457 cmpCapitalC.item["n"] := "{u+2658}" ; (♘) white chess knight
1458 cmpCapitalC.item["p"] := "{u+2659}" ; (♙) white chess pawn
1459 cmpCapitalC.item["K"] := "{u+265a}" ; (♚) black chess king
1460 cmpCapitalC.item["Q"] := "{u+265b}" ; (♛) black chess queen
1461 cmpCapitalC.item["R"] := "{u+265c}" ; (♜) black chess rook
1462 cmpCapitalC.item["B"] := "{u+265d}" ; (♝) black chess bishop
1463 cmpCapitalC.item["N"] := "{u+265e}" ; (♞) black chess knight
1464 cmpCapitalC.item["P"] := "{u+265f}" ; (♟) black chess pawn
1465 cmpCapitalC.item["c"] := "{u+2667}" ; (♧) white club suit
1466 cmpCapitalC.item["C"] := "{u+2663}" ; (♣) black club suit
1467 cmpCapitalC.item["d"] := "{u+2662}" ; (♢) white diamond suit
1468 cmpCapitalC.item["D"] := "{u+2666}" ; (♦) black diamond suit
1469 cmpCapitalC.item["h"] := "{u+2661}" ; (♡) white heart suit
1470 cmpCapitalC.item["H"] := "{u+2665}" ; (♥) black heart suit
1471 cmpCapitalC.item["s"] := "{u+2664}" ; (♤) white spade suit
1472 cmpCapitalC.item["S"] := "{u+2660}" ; (♠) black spade suit
1473
1474
1475 ; Compose : Dingbat Negative Circled Digits (n)
1476
1477 cmpSmallN.item["1"] := "{u+2776}" ; (❶) dingbat negative circled digit 1
1478 cmpSmallN.item["2"] := "{u+2777}" ; (❷) dingbat negative circled digit 2
1479 cmpSmallN.item["3"] := "{u+2778}" ; (❸) dingbat negative circled digit 3
1480 cmpSmallN.item["4"] := "{u+2779}" ; (❹) dingbat negative circled digit 4
1481 cmpSmallN.item["5"] := "{u+277a}" ; (❺) dingbat negative circled digit 5
1482 cmpSmallN.item["6"] := "{u+277b}" ; (❻) dingbat negative circled digit 6
1483 cmpSmallN.item["7"] := "{u+277c}" ; (❼) dingbat negative circled digit 7
1484 cmpSmallN.item["8"] := "{u+277d}" ; (❽) dingbat negative circled digit 8
1485 cmpSmallN.item["9"] := "{u+277e}" ; (❾) dingbat negative circled digit 9
1486 cmpSmallN.item["0"] := "{u+277f}" ; (❿) dingbat negative circled digit 10
1487
1488
1489 ; Configuration : 'Right Alt' and 'Right Alt + Shift' on US QWERTY
1490
1491 >!a::
1492 if GetKeyState("CapsLock", "T")
1493 Send {u+00c4} ; (Ä) A with diaeresis
1494 else
1495 Send {u+00e4} ; (ä) a with diaeresis
1496 return
1497 >!+a::
1498 if GetKeyState("CapsLock", "T")
1499 Send {u+00e4} ; (ä) a with diaeresis
1500 else
1501 Send {u+00c4} ; (Ä) A with diaeresis
1502 return
1503
1504 >!q::
1505 if GetKeyState("CapsLock", "T")
1506 Send {u+00c6} ; (Æ) letter AE
1507 else
1508 Send {u+00e6} ; (æ) letter ae
1509 return
1510 >!+q::
1511 if GetKeyState("CapsLock", "T")
1512 Send {u+00e6} ; (æ) letter ae
1513 else
1514 Send {u+00c6} ; (Æ) letter AE
1515 return
1516
1517 >!w::
1518 if GetKeyState("CapsLock", "T")
1519 Send {u+00c5} ; (Å) A with ring above
1520 else
1521 Send {u+00e5} ; (å) a with ring above
1522 return
1523 >!+w::
1524 if GetKeyState("CapsLock", "T")
1525 Send {u+00e5} ; (å) a with ring above
1526 else
1527 Send {u+00c5} ; (Å) A with ring above
1528 return
1529
1530 >!z::
1531 if GetKeyState("CapsLock", "T")
1532 Send {u+00c1} ; (Á) A with acute
1533 else
1534 Send {u+00e1} ; (á) a with acute
1535 return
1536 >!+z::
1537 if GetKeyState("CapsLock", "T")
1538 Send {u+00e1} ; (á) a with acute
1539 else
1540 Send {u+00c1} ; (Á) A with acute
1541 return
1542
1543 >!x::
1544 if GetKeyState("CapsLock", "T")
1545 Send {u+00c0} ; (À) A with grave
1546 else
1547 Send {u+00e0} ; (à) a with grave
1548 return
1549 >!+x::
1550 if GetKeyState("CapsLock", "T")
1551 Send {u+00e0} ; (à) a with grave
1552 else
1553 Send {u+00c0} ; (À) A with grave
1554 return
1555
1556 >!d::
1557 if GetKeyState("CapsLock", "T")
1558 Send {u+00c2} ; (Â) A with circumflex
1559 else
1560 Send {u+00e2} ; (â) a with circumflex
1561 return
1562 >!+d::
1563 if GetKeyState("CapsLock", "T")
1564 Send {u+00e2} ; (â) a with circumflex
1565 else
1566 Send {u+00c2} ; (Â) A with circumflex
1567 return
1568
1569 >!c::
1570 if GetKeyState("CapsLock", "T")
1571 Send {u+00c7} ; (Ç) C with cedilla
1572 else
1573 Send {u+00e7} ; (ç) c with cedilla
1574 return
1575 >!+c::
1576 if GetKeyState("CapsLock", "T")
1577 Send {u+00e7} ; (ç) c with cedilla
1578 else
1579 Send {u+00c7} ; (Ç) C with cedilla
1580 return
1581
1582 >!e::
1583 if GetKeyState("CapsLock", "T")
1584 Send {u+00cb} ; (Ë) E with diaeresis
1585 else
1586 Send {u+00eb} ; (ë) e with diaeresis
1587 return
1588 >!+e::
1589 if GetKeyState("CapsLock", "T")
1590 Send {u+00eb} ; (ë) e with diaeresis
1591 else
1592 Send {u+00cb} ; (Ë) E with diaeresis
1593 return
1594
1595 >!f::
1596 if GetKeyState("CapsLock", "T")
1597 Send {u+00c9} ; (É) E with acute
1598 else
1599 Send {u+00e9} ; (é) e with acute
1600 return
1601 >!+f::
1602 if GetKeyState("CapsLock", "T")
1603 Send {u+00e9} ; (é) e with acute
1604 else
1605 Send {u+00c9} ; (É) E with acute
1606 return
1607
1608 >!g::
1609 if GetKeyState("CapsLock", "T")
1610 Send {u+00c8} ; (È) E with grave
1611 else
1612 Send {u+00e8} ; (è) e with grave
1613 return
1614 >!+g::
1615 if GetKeyState("CapsLock", "T")
1616 Send {u+00e8} ; (è) e with grave
1617 else
1618 Send {u+00c8} ; (È) E with grave
1619 return
1620
1621 >!r::
1622 if GetKeyState("CapsLock", "T")
1623 Send {u+00ca} ; (Ê) E with circumflex
1624 else
1625 Send {u+00ea} ; (ê) e with circumflex
1626 return
1627 >!+r::
1628 if GetKeyState("CapsLock", "T")
1629 Send {u+00ea} ; (ê) e with circumflex
1630 else
1631 Send {u+00ca} ; (Ê) E with circumflex
1632 return
1633
1634 >!i::
1635 if GetKeyState("CapsLock", "T")
1636 Send {u+00cf} ; (Ï) I with diaeresis
1637 else
1638 Send {u+00ef} ; (ï) i with diaeresis
1639 return
1640 >!+i::
1641 if GetKeyState("CapsLock", "T")
1642 Send {u+00ef} ; (ï) i with diaeresis
1643 else
1644 Send {u+00cf} ; (Ï) I with diaeresis
1645 return
1646
1647 >!v::
1648 if GetKeyState("CapsLock", "T")
1649 Send {u+00cd} ; (Í) I with acute
1650 else
1651 Send {u+00ed} ; (í) i with acute
1652 return
1653 >!+v::
1654 if GetKeyState("CapsLock", "T")
1655 Send {u+00ed} ; (í) i with acute
1656 else
1657 Send {u+00cd} ; (Í) I with acute
1658 return
1659
1660 >!b::
1661 if GetKeyState("CapsLock", "T")
1662 Send {u+00cc} ; (Ì) I with grave
1663 else
1664 Send {u+00ec} ; (ì) i with grave
1665 return
1666 >!+b::
1667 if GetKeyState("CapsLock", "T")
1668 Send {u+00ec} ; (ì) i with grave
1669 else
1670 Send {u+00cc} ; (Ì) I with grave
1671 return
1672
1673 >!t::
1674 if GetKeyState("CapsLock", "T")
1675 Send {u+00ce} ; (Î) I with circumflex
1676 else
1677 Send {u+00ee} ; (î) i with circumflex
1678 return
1679 >!+t::
1680 if GetKeyState("CapsLock", "T")
1681 Send {u+00ee} ; (î) i with circumflex
1682 else
1683 Send {u+00ce} ; (Î) I with circumflex
1684 return
1685
1686 >!n::
1687 if GetKeyState("CapsLock", "T")
1688 Send {u+00d1} ; (Ñ) N with tilde
1689 else
1690 Send {u+00f1} ; (ñ) n with tilde
1691 return
1692 >!+n::
1693 if GetKeyState("CapsLock", "T")
1694 Send {u+00f1} ; (ñ) n with tilde
1695 else
1696 Send {u+00d1} ; (Ñ) N with tilde
1697 return
1698
1699 >!o::
1700 if GetKeyState("CapsLock", "T")
1701 Send {u+00d6} ; (Ö) O with diaeresis
1702 else
1703 Send {u+00f6} ; (ö) o with diaeresis
1704 return
1705 >!+o::
1706 if GetKeyState("CapsLock", "T")
1707 Send {u+00f6} ; (ö) o with diaeresis
1708 else
1709 Send {u+00d6} ; (Ö) O with diaeresis
1710 return
1711
1712 >!k::
1713 if GetKeyState("CapsLock", "T")
1714 Send {u+0152} ; (Œ) ligature OE
1715 else
1716 Send {u+0153} ; (œ) ligature oe
1717 return
1718 >!+k::
1719 if GetKeyState("CapsLock", "T")
1720 Send {u+0153} ; (œ) ligature oe
1721 else
1722 Send {u+0152} ; (Œ) ligature OE
1723 return
1724
1725 >!l::
1726 if GetKeyState("CapsLock", "T")
1727 Send {u+00d8} ; (Ø) O with stroke
1728 else
1729 Send {u+00f8} ; (ø) o with stroke
1730 return
1731 >!+l::
1732 if GetKeyState("CapsLock", "T")
1733 Send {u+00f8} ; (ø) o with stroke
1734 else
1735 Send {u+00d8} ; (Ø) O with stroke
1736 return
1737
1738 >!,::
1739 if GetKeyState("CapsLock", "T")
1740 Send {u+00d3} ; (Ó) O with acute
1741 else
1742 Send {u+00f3} ; (ó) o with acute
1743 return
1744 >!<::
1745 if GetKeyState("CapsLock", "T")
1746 Send {u+00f3} ; (ó) o with acute
1747 else
1748 Send {u+00d3} ; (Ó) O with acute
1749 return
1750
1751 >!.::
1752 if GetKeyState("CapsLock", "T")
1753 Send {u+00d2} ; (Ò) O with grave
1754 else
1755 Send {u+00f2} ; (ò) o with grave
1756 return
1757 >!>::
1758 if GetKeyState("CapsLock", "T")
1759 Send {u+00f2} ; (ò) o with grave
1760 else
1761 Send {u+00d2} ; (Ò) O with grave
1762 return
1763
1764 >!p::
1765 if GetKeyState("CapsLock", "T")
1766 Send {u+00d4} ; (Ô) O with circumflex
1767 else
1768 Send {u+00f4} ; (ô) o with circumflex
1769 return
1770 >!+p::
1771 if GetKeyState("CapsLock", "T")
1772 Send {u+00f4} ; (ô) o with circumflex
1773 else
1774 Send {u+00d4} ; (Ô) O with circumflex
1775 return
1776
1777 >!s::
1778 if GetKeyState("CapsLock", "T")
1779 Send {u+1e9e} ; (ẞ) capital sharp S (capital Eszett)
1780 else
1781 Send {u+00df} ; (ß) small sharp s (Eszett)
1782 return
1783 >!+s::
1784 if GetKeyState("CapsLock", "T")
1785 Send {u+00df} ; (ß) small sharp s (Eszett)
1786 else
1787 Send {u+1e9e} ; (ẞ) capital sharp S (capital Eszett)
1788 return
1789
1790 >!u::
1791 if GetKeyState("CapsLock", "T")
1792 Send {u+00dc} ; (Ü) U with diaeresis
1793 else
1794 Send {u+00fc} ; (ü) u with diaeresis
1795 return
1796 >!+u::
1797 if GetKeyState("CapsLock", "T")
1798 Send {u+00fc} ; (ü) u with diaeresis
1799 else
1800 Send {u+00dc} ; (Ü) U with diaeresis
1801 return
1802
1803 >!h::
1804 if GetKeyState("CapsLock", "T")
1805 Send {u+00da} ; (Ú) U with acute
1806 else
1807 Send {u+00fa} ; (ú) u with acute
1808 return
1809 >!+h::
1810 if GetKeyState("CapsLock", "T")
1811 Send {u+00fa} ; (ú) u with acute
1812 else
1813 Send {u+00da} ; (Ú) U with acute
1814 return
1815
1816 >!j::
1817 if GetKeyState("CapsLock", "T")
1818 Send {u+00d9} ; (Ù) U with grave
1819 else
1820 Send {u+00f9} ; (ù) u with grave
1821 return
1822 >!+j::
1823 if GetKeyState("CapsLock", "T")
1824 Send {u+00f9} ; (ù) u with grave
1825 else
1826 Send {u+00d9} ; (Ù) U with grave
1827 return
1828
1829 >!y::
1830 if GetKeyState("CapsLock", "T")
1831 Send {u+00db} ; (Û) U with circumflex
1832 else
1833 Send {u+00fb} ; (û) u with circumflex
1834 return
1835 >!+y::
1836 if GetKeyState("CapsLock", "T")
1837 Send {u+00fb} ; (û) u with circumflex
1838 else
1839 Send {u+00db} ; (Û) U with circumflex
1840 return
1841
1842 >!6::
1843 if GetKeyState("CapsLock", "T")
1844 Send {u+00c3} ; (Ã) A with tilde
1845 else
1846 Send {u+00e3} ; (ã) a with tilde
1847 return
1848 >!+6::
1849 if GetKeyState("CapsLock", "T")
1850 Send {u+00e3} ; (ã) a with tilde
1851 else
1852 Send {u+00c3} ; (Ã) A with tilde
1853 return
1854
1855 >!7::
1856 if GetKeyState("CapsLock", "T")
1857 Send {u+00d5} ; (Õ) O with tilde
1858 else
1859 Send {u+00f5} ; (õ) o with tilde
1860 return
1861 >!+7::
1862 if GetKeyState("CapsLock", "T")
1863 Send {u+00f5} ; (õ) o with tilde
1864 else
1865 Send {u+00d5} ; (Õ) O with tilde
1866 return
1867
1868 >!m::Send {u+00b5} ; (µ) micro sign
1869 >!+m::Send {u+00b1} ; (±) plus-minus sign
1870
1871 >!1::Send {u+00a1} ; (¡) inverted exclamation mark
1872 >!+1::Send {u+00b9} ; (¹) superscript 1
1873
1874 >!2::Send {u+2264} ; (≤) less-than or equal to
1875 >!+2::Send {u+00b2} ; (²) superscript 2
1876
1877 >!3::Send {u+2265} ; (≥) greater-than or equal to
1878 >!+3::Send {u+00b3} ; (³) superscript 3
1879
1880 >!4::Send {u+00a3} ; (£) pound sign
1881 >!+4::Send {u+00a5} ; (¥) yen sign
1882
1883 >!5::Send {u+20ac} ; (€) euro sign
1884 >!+5::Send {u+00a2} ; (¢) cent sign (dollar)
1885
1886 >!8::Send {u+201e} ; („) double low-9 quotation mark
1887 >!+8::Send {u+00a7} ; (§) section sign
1888
1889 >!9::Send {u+201c} ; (“) left double quotation mark
1890 >!+9::Send {u+2018} ; (‘) left single quotation mark
1891
1892 >!0::Send {u+201d} ; (”) right double quotation mark
1893 >!+0::Send {u+2019} ; (’) right single quotation mark
1894
1895 >!-::Send {u+2013} ; (–) en dash
1896 >!_::Send {u+2014} ; (—) em dash
1897
1898 >!=::Send {u+00d7} ; (×) multiplication sign
1899 >!+::Send {u+00f7} ; (÷) division sign
1900
1901 >![::Send {u+00ab} ; («) left-pointing double angle quotation mark
1902 >!{::Send {u+2039} ; (‹) left-pointing single angle quotation mark
1903
1904 >!]::Send {u+00bb} ; (») right-pointing double angle quotation mark
1905 >!}::Send {u+203a} ; (›) right-pointing single angle quotation mark
1906
1907 >!;::Send {u+00b0} ; (°) degree sign
1908 >!+;::Send {u+00b7} ; (·) middle dot
1909
1910 >!'::Send {u+266a} ; (♪) eighth note
1911 >!"::Send {u+266b} ; (♫) beamed eighth notes
1912
1913 >!\::Send {u+2002} ; en space
1914 >!|::Send {u+2003} ; em space
1915
1916 >!/::Send {u+00bf} ; (¿) inverted question mark
1917 >!?::Send {u+2022} ; (•) bullet
1918
1919 >!space::Send {u+00a0} ; non-breaking space (NBSP)
1920 >!+space::Send {u+00a0} ; non-breaking space (NBSP)
1921
1922
1923 ; Configuration : Compose Key Selector
1924
1925 >!`::
1926 >!~::
1927 >!sc056::
1928 >!+sc056::
1929 Input, keyA, L1, {bs}{del}{esc}{home}{end}
1930 Input, keyB, L1, {bs}{del}{esc}{home}{end}
1931
1932 if (keyA == "'")
1933 Send % cmpAcuteAccent.item[keyB]
1934 else if (keyA == "``")
1935 Send % cmpGraveAccent.item[keyB]
1936 else if (keyA == chr(34))
1937 Send % cmpDiaeresis.item[keyB]
1938 else if (keyA == "c")
1939 Send % cmpCircumflex.item[keyB]
1940 else if (keyA == "~")
1941 Send % cmpTilde.item[keyB]
1942 else if (keyA == ",")
1943 Send % cmpCedillaOgonek.item[keyB]
1944 else if (keyA == "v")
1945 Send % cmpCaron.item[keyB]
1946 else if (keyA == ".")
1947 Send % cmpDotAbove.item[keyB]
1948 else if (keyA == "o")
1949 Send % cmpRingAbove.item[keyB]
1950 else if (keyA == "-")
1951 Send % cmpMacronStroke.item[keyB]
1952 else if (keyA == "_")
1953 Send % cmpMacronStrokeAdd.item[keyB]
1954 else if (keyA == "/")
1955 Send % cmpStroke.item[keyB]
1956 else if (keyA == "b")
1957 Send % cmpBreveSpecial.item[keyB]
1958 else if (keyA == "=")
1959 Send % cmpDoubleAcute.item[keyB]
1960 else if (keyA == "h")
1961 Send % cmpSmallH.item[keyB]
1962 else if (keyA == "f")
1963 Send % cmpSmallF.item[keyB]
1964 else if (keyA == "t")
1965 Send % cmpSmallT.item[keyB]
1966 else if (keyA == "l")
1967 Send % cmpSmallL.item[keyB]
1968 else if (keyA == "r")
1969 Send % cmpSmallR.item[keyB]
1970 else if (keyA == "$")
1971 Send % cmpCurrency.item[keyB]
1972 else if (keyA == "g")
1973 Send % cmpGreek.item[keyB]
1974 else if (keyA == "p")
1975 Send % cmpSuperscript.item[keyB]
1976 else if (keyA == "u")
1977 Send % cmpSubscript.item[keyB]
1978 else if (keyA == " ")
1979 Send % cmpSpace.item[keyB]
1980 else if (keyA == "q")
1981 Send % cmpQuad.item[keyB]
1982 else if (keyA == "a")
1983 Send % cmpArrow.item[keyB]
1984 else if (keyA == "s")
1985 Send % cmpSymbols.item[keyB]
1986 else if (keyA == "m")
1987 Send % cmpMathSymbols.item[keyB]
1988 else if (keyA == "A")
1989 Send % cmpCapitalA.item[keyB]
1990 else if (keyA == "d")
1991 Send % cmpSmallD.item[keyB]
1992 else if (keyA == "D")
1993 Send % cmpCapitalD.item[keyB]
1994 else if (keyA == "i")
1995 Send % cmpSmallI.item[keyB]
1996 else if (keyA == "I")
1997 Send % cmpCapitalI.item[keyB]
1998 else if (keyA == "n")
1999 Send % cmpSmallN.item[keyB]
2000 else if (keyA == "N")
2001 Send % cmpCapitalN.item[keyB]
2002 else if (keyA == "O")
2003 Send % cmpCapitalO.item[keyB]
2004 else if (keyA == "S")
2005 Send % cmpCapitalS.item[keyB]
2006 else if (keyA == "T")
2007 Send % cmpCapitalT.item[keyB]
2008 else if (keyA == "P")
2009 Send % cmpCapitalP.item[keyB]
2010 else if (keyA == "|")
2011 Send % cmpVerticalLine.item[keyB]
2012 else if (keyA == "*")
2013 Send % cmpAsterisk.item[keyB]
2014 else if (keyA == "!")
2015 Send % cmpExclam.item[keyB]
2016 else if (keyA == "?")
2017 Send % cmpQuestion.item[keyB]
2018 else if (keyA == "(")
2019 Send % cmpParenLeft.item[keyB]
2020 else if (keyA == "+")
2021 Send % cmpPlus.item[keyB]
2022 else if (keyA == "%")
2023 Send % cmpPercent.item[keyB]
2024 else if (keyA == "8")
2025 Send % cmpDigitEight.item[keyB]
2026 else if (keyA == "<")
2027 Send % cmpLessThan.item[keyB]
2028 else if (keyA == ">")
2029 Send % cmpGreaterThan.item[keyB]
2030 else if (keyA == ";")
2031 Send % cmpSemicolon.item[keyB]
2032 else if (keyA == "1")
2033 Send % cmpDigitOne.item[keyB]
2034 else if (keyA == "2")
2035 Send % cmpDigitTwo.item[keyB]
2036 else if (keyA == "3")
2037 Send % cmpDigitThree.item[keyB]
2038 else if (keyA == "4")
2039 Send % cmpDigitFour.item[keyB]
2040 else if (keyA == "5")
2041 Send % cmpDigitFive.item[keyB]
2042 else if (keyA == "7")
2043 Send % cmpDigitSeven.item[keyB]
2044 else if (keyA == "0")
2045 Send % cmpDigitZero.item[keyB]
2046 else if (keyA == "[")
2047 Send % cmpBracketLeft.item[keyB]
2048 else if (keyA == "]")
2049 Send % cmpBracketRight.item[keyB]
2050 else if (keyA == "\")
2051 Send % cmpBackslash.item[keyB]
2052 else if (keyA == "G")
2053 Send % cmpCapitalG.item[keyB]
2054 else if (keyA == "B")
2055 Send % cmpCapitalB.item[keyB]
2056 else if (keyA == "L")
2057 Send % cmpCapitalL.item[keyB]
2058 else if (keyA == "R")
2059 Send % cmpCapitalR.item[keyB]
2060 else if (keyA == "6")
2061 Send % cmpDigitSix.item[keyB]
2062 else if (keyA == "C")
2063 Send % cmpCapitalC.item[keyB]
2064
2065 keyA := "" ; avoids leaking content via debug properties
2066 keyB := "" ; avoids leaking content via debug properties
2067 return